summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentationEntry.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-12 20:38:18 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-13 20:41:29 (GMT)
commit535ec2bf1a57375221259ed1041c6d8d35c79b91 (patch)
tree9aafa41d6941f57383b2074c0d2b58638903037a /Source/cmDocumentationEntry.h
parentc3819acad22c1bc0f763f7222648e8cade777ca6 (diff)
downloadCMake-535ec2bf1a57375221259ed1041c6d8d35c79b91.zip
CMake-535ec2bf1a57375221259ed1041c6d8d35c79b91.tar.gz
CMake-535ec2bf1a57375221259ed1041c6d8d35c79b91.tar.bz2
cmDocumentationEntry: Extract from cmStandardIncludes
Diffstat (limited to 'Source/cmDocumentationEntry.h')
-rw-r--r--Source/cmDocumentationEntry.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/Source/cmDocumentationEntry.h b/Source/cmDocumentationEntry.h
new file mode 100644
index 0000000..f50839e
--- /dev/null
+++ b/Source/cmDocumentationEntry.h
@@ -0,0 +1,45 @@
+/*============================================================================
+ CMake - Cross Platform Makefile Generator
+ Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
+
+ Distributed under the OSI-approved BSD License (the "License");
+ see accompanying file Copyright.txt for details.
+
+ 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.
+============================================================================*/
+#ifndef cmDocumentationEntry_h
+#define cmDocumentationEntry_h
+
+#include <cmConfigure.h> // IWYU pragma: keep
+
+#include <string>
+
+/** 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;
+ }
+ }
+};
+
+#endif