#include <src/JobOptionsSvc/Node.h>
Definition at line 69 of file Node.h.
void Gaudi::Parsers::NodeOperations::operator() |
( |
Node & |
node, |
|
|
Node::NodeType |
type |
|
) |
| const |
|
inline |
void Gaudi::Parsers::NodeOperations::operator() |
( |
Node & |
node, |
|
|
Node |
child |
|
) |
| const |
|
inline |
Definition at line 74 of file Node.h.
74 { node.children.push_back(
std::move( child ) ); }
void Gaudi::Parsers::NodeOperations::operator() |
( |
Node & |
node, |
|
|
std::string |
val |
|
) |
| const |
|
inline |
void Gaudi::Parsers::NodeOperations::operator() |
( |
Node & |
node, |
|
|
boost::iterator_range< Iterator > |
range |
|
) |
| const |
|
inline |
Definition at line 78 of file Node.h.
79 node.value = boost::copy_range<std::string>(
range );
NamedRange_< CONTAINER > range(const CONTAINER &cnt, std::string name)
simple function to create the named range from arbitrary container
void Gaudi::Parsers::NodeOperations::operator() |
( |
Node & |
node, |
|
|
bool |
val |
|
) |
| const |
|
inline |
Definition at line 82 of file Node.h.
82 { node.value = val ?
"1" :
"0"; }
void Gaudi::Parsers::NodeOperations::operator() |
( |
Node & |
node, |
|
|
const Iterator & |
iter |
|
) |
| const |
|
inline |
Definition at line 84 of file Node.h.
86 node.position = Position( pos.file, pos.line, pos.column );
boost::spirit::classic::file_position_base< std::string > IteratorPosition
The documentation for this struct was generated from the following file:
- GaudiCoreSvc/src/JobOptionsSvc/Node.h