diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-22 19:33:19 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-22 19:33:19 (GMT) |
commit | 44cce51a1a36973344a0bc1bb99f39410fd678e6 (patch) | |
tree | 29b3d0e23e07e3a6b8356396f15bcdcb488e2261 /Source/cmDocumentation.h | |
parent | 5765fbbb8803047850194d1498e573b78bcf50eb (diff) | |
download | CMake-44cce51a1a36973344a0bc1bb99f39410fd678e6.zip CMake-44cce51a1a36973344a0bc1bb99f39410fd678e6.tar.gz CMake-44cce51a1a36973344a0bc1bb99f39410fd678e6.tar.bz2 |
COMP: fix some warnings and add some doc strings back in
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. |