| 88 | /** Add the documentation to the beginning/end of the section */ |
| 89 | template <typename Iterable> |
| 90 | void PrependSection(char const* sectionName, Iterable const& docs) |
| 91 | { |
| 92 | this->SectionAtName(sectionName).Prepend(docs); |
| 93 | } |
| 94 | void PrependSection(char const* sectionName, cmDocumentationEntry& docs); |
| 95 | template <typename Iterable> |
| 96 | void AppendSection(char const* sectionName, Iterable const& docs) |