diff options
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r-- | Source/cmDocumentation.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index 0de0fa2..99000ee 100644 --- a/Source/cmDocumentation.h +++ b/Source/cmDocumentation.h @@ -73,6 +73,14 @@ public: void SetSections(std::map<std::string,cmDocumentationSection *> §ions); + /** Add the documentation to the beginning/end of the section */ + void PrependSection(const char *sectionName, + const char *docs[][3]); + void AppendSection(const char *sectionName, + const char *docs[][3]); + void AppendSection(const char *sectionName, + std::vector<cmDocumentationEntry> &docs); + /** * Print documentation in the given form. All previously added * sections will be generated. |