summaryrefslogtreecommitdiff
path: root/Source/cmDocumentation.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-07-07 21:52:10 -0400
committerBrad King <brad.king@kitware.com>2003-07-07 21:52:10 -0400
commite5ed57ec18e1cd1d460bd77391db15a5d4afdcc1 (patch)
tree1a6c2c3b22eb90c0dfd647e08b05aea8f603f439 /Source/cmDocumentation.h
parentcbb1de923a3fb977f3910d4054191cdffc478134 (diff)
downloadcmake-e5ed57ec18e1cd1d460bd77391db15a5d4afdcc1.tar.gz
ENH: Registered global generators are now kept in a table in the cmake instance. Added support for documentation with a Generators section.
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r--Source/cmDocumentation.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h
index 5e507a0f4d..b5cf85c689 100644
--- a/Source/cmDocumentation.h
+++ b/Source/cmDocumentation.h
@@ -56,6 +56,9 @@ public:
/** Set the listfile commands for standard document generation. */
void SetCommandsSection(const cmDocumentationEntry*);
+ /** Set the generator descriptions for standard document generation. */
+ void SetGeneratorsSection(const cmDocumentationEntry*);
+
// Low-level interface for custom documents:
/** Forms of documentation output. */
@@ -124,6 +127,7 @@ private:
std::vector<cmDocumentationEntry> DescriptionSection;
std::vector<cmDocumentationEntry> OptionsSection;
std::vector<cmDocumentationEntry> CommandsSection;
+ std::vector<cmDocumentationEntry> GeneratorsSection;
std::vector< const char* > Names;
std::vector< const cmDocumentationEntry* > Sections;