2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-10-22 20:49:09 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2007-10-22 20:49:09 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2007-10-22 20:49:09 +04:00
|
|
|
#ifndef _cmDocumentationSection_h
|
|
|
|
#define _cmDocumentationSection_h
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include "cmDocumentationEntry.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2007-10-22 20:49:09 +04:00
|
|
|
|
|
|
|
// Low-level interface for custom documents:
|
|
|
|
/** Internal class representing a section of the documentation.
|
|
|
|
* Cares e.g. for the different section titles in the different
|
|
|
|
* output formats.
|
|
|
|
*/
|
|
|
|
class cmDocumentationSection
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a cmSection, with a special name for man-output mode. */
|
2013-09-14 00:09:52 +04:00
|
|
|
cmDocumentationSection(const char* name, const char*)
|
2016-05-16 17:34:04 +03:00
|
|
|
: Name(name)
|
|
|
|
{
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
/** Has any content been added to this section or is it empty ? */
|
|
|
|
bool IsEmpty() const { return this->Entries.empty(); }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
/** Clear contents. */
|
|
|
|
void Clear() { this->Entries.clear(); }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2013-09-14 00:09:52 +04:00
|
|
|
/** Return the name of this section. */
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string GetName() const { return this->Name; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
/** Return a pointer to the first entry of this section. */
|
2016-05-16 17:34:04 +03:00
|
|
|
const std::vector<cmDocumentationEntry>& GetEntries() const
|
|
|
|
{
|
|
|
|
return this->Entries;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
/** Append an entry to this section. */
|
|
|
|
void Append(const cmDocumentationEntry& entry)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
this->Entries.push_back(entry);
|
|
|
|
}
|
|
|
|
void Append(const std::vector<cmDocumentationEntry>& entries)
|
|
|
|
{
|
|
|
|
this->Entries.insert(this->Entries.end(), entries.begin(), entries.end());
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
/** Append an entry to this section using NULL terminated chars */
|
2016-05-16 17:34:04 +03:00
|
|
|
void Append(const char* [][2]);
|
|
|
|
void Append(const char* n, const char* b);
|
2007-10-22 23:33:19 +04:00
|
|
|
|
|
|
|
/** prepend some documentation to this section */
|
2016-05-16 17:34:04 +03:00
|
|
|
void Prepend(const char* [][2]);
|
|
|
|
void Prepend(const std::vector<cmDocumentationEntry>& entries)
|
|
|
|
{
|
|
|
|
this->Entries.insert(this->Entries.begin(), entries.begin(),
|
|
|
|
entries.end());
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
private:
|
|
|
|
std::string Name;
|
|
|
|
std::vector<cmDocumentationEntry> Entries;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|