Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
535ec2bf
Commit
535ec2bf
authored
Jun 12, 2016
by
Daniel Pfeifer
Browse files
cmDocumentationEntry: Extract from cmStandardIncludes
parent
c3819aca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/cmDocumentationEntry.h
0 → 100644
View file @
535ec2bf
/*============================================================================
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
Source/cmStandardIncludes.h
View file @
535ec2bf
...
...
@@ -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
>
...
...
Brad King
@brad.king
mentioned in commit
290913fa
·
Jun 16, 2016
mentioned in commit
290913fa
mentioned in commit 290913fab871eddee22e6ebadd3eb7ef48c1485b
Toggle commit list
Brad King
@brad.king
Mentioned in commit
290913fa
·
Oct 03, 2016
Mentioned in commit
290913fa
Mentioned in commit 290913fab871eddee22e6ebadd3eb7ef48c1485b
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment