diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-22 15:33:19 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-22 15:33:19 -0400 |
commit | 44cce51a1a36973344a0bc1bb99f39410fd678e6 (patch) | |
tree | 29b3d0e23e07e3a6b8356396f15bcdcb488e2261 /Source/cmDocumentationSection.h | |
parent | 5765fbbb8803047850194d1498e573b78bcf50eb (diff) | |
download | cmake-44cce51a1a36973344a0bc1bb99f39410fd678e6.tar.gz |
COMP: fix some warnings and add some doc strings back in
Diffstat (limited to 'Source/cmDocumentationSection.h')
-rw-r--r-- | Source/cmDocumentationSection.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/cmDocumentationSection.h b/Source/cmDocumentationSection.h index 60e735bc62..97a15af1a6 100644 --- a/Source/cmDocumentationSection.h +++ b/Source/cmDocumentationSection.h @@ -56,11 +56,10 @@ public: /** Append an entry to this section using NULL terminated chars */ void Append(const char *[][3]); void Append(const char *n, const char *b, const char *f); - - /** Set the contents of this section. */ -// void Set(const std::vector<cmDocumentationEntry> header, -// const std::vector<cmDocumentationEntry> section, -// const std::vector<cmDocumentationEntry> footer); + + /** prepend some documentation to this section */ + void Prepend(const char *[][3]); + private: std::string Name; |