diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-06-12 20:38:18 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-06-13 20:41:29 (GMT) |
commit | 535ec2bf1a57375221259ed1041c6d8d35c79b91 (patch) | |
tree | 9aafa41d6941f57383b2074c0d2b58638903037a /Source/cmStandardIncludes.h | |
parent | c3819acad22c1bc0f763f7222648e8cade777ca6 (diff) | |
download | CMake-535ec2bf1a57375221259ed1041c6d8d35c79b91.zip CMake-535ec2bf1a57375221259ed1041c6d8d35c79b91.tar.gz CMake-535ec2bf1a57375221259ed1041c6d8d35c79b91.tar.bz2 |
cmDocumentationEntry: Extract from cmStandardIncludes
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index 5ff221d..82652f1 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -55,31 +55,7 @@ typedef unsigned short mode_t; /* Poison this operator to avoid common mistakes. */ extern void operator<<(std::ostream&, const std::ostringstream&); -/** Standard documentation entry for cmDocumentation's formatting. */ -struct cmDocumentationEntry -{ - std::string Name; - std::string Brief; - cmDocumentationEntry() {} - cmDocumentationEntry(const char* doc[2]) - { - if (doc[0]) { - this->Name = doc[0]; - } - if (doc[1]) { - this->Brief = doc[1]; - } - } - cmDocumentationEntry(const char* n, const char* b) - { - if (n) { - this->Name = n; - } - if (b) { - this->Brief = b; - } - } -}; +#include "cmDocumentationEntry.h" /** Data structure to represent a single command line. */ class cmCustomCommandLine : public std::vector<std::string> |