Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docraft/include/docraft/craft/docraft_craft_language_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ namespace docraft::craft {

~DocraftCraftLanguageParser() = default;

DocraftCraftLanguageParser(const DocraftCraftLanguageParser&) = delete;
DocraftCraftLanguageParser& operator=(const DocraftCraftLanguageParser&) = delete;

/**
* @brief Parses craft language source (a single root element) as a string.
* @param craft_language_source XML source as string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ namespace docraft::loom::craft {
public:
static DocraftLoomTagHandlerRegistry& instance();

DocraftLoomTagHandlerRegistry(const DocraftLoomTagHandlerRegistry&) = delete;
DocraftLoomTagHandlerRegistry& operator=(const DocraftLoomTagHandlerRegistry&) = delete;

void register_handler(const std::string& tag, std::unique_ptr<IDocraftLoomTagHandler> handler);

/**
Expand Down
2 changes: 1 addition & 1 deletion docraft/include/docraft/loom/docraft_loom_pdf_creator.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace docraft::loom {
* and re-visited by the rendering pass for each physical page. The body is laid out
* as one continuous flow and then split across pages by DocraftLoomPaginationProcessor.
*/
class DocraftLoomPdfCreator
class DOCRAFT_LIB DocraftLoomPdfCreator
{
public:
/**
Expand Down
2 changes: 1 addition & 1 deletion docraft/include/docraft/tools/docraft_validator.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace docraft::tools {
* @brief Aggregated result of DocraftValidator::validate(): every diagnostic found,
* in the order they were discovered.
*/
struct DocraftValidationResult
struct DOCRAFT_LIB DocraftValidationResult
{
std::vector<DocraftValidationIssue> issues;

Expand Down
Loading