Class Reference for E1039 Core & Analysis Software
|
#include </dev/shm/kenichi/update-github-e1039-doc/e1039-core/framework/phool/PHDataNodeIterator.h>
Public Member Functions | |
PHDataNodeIterator (PHCompositeNode *node) | |
Constructor. More... | |
virtual | ~PHDataNodeIterator () |
Destructor. More... | |
template<class T > | |
PHIODataNode< T > * | FindIODataNode (PHIODataNode< T > *node, const char *name) |
template<class T > | |
PHBoolean | AddIODataNode (T *data, const char *name) |
![]() | |
PHNodeIterator (PHCompositeNode *) | |
virtual | ~PHNodeIterator () |
PHNodeIterator () | |
void | print () |
PHPointerList< PHNode > & | ls () |
PHNode * | findFirst (const std::string &, const std::string &) |
PHNode * | findFirst (const std::string &) |
PHBoolean | cd (const std::string &pathString="") |
PHBoolean | addNode (PHNode *) |
void | forEach (PHNodeOperation &) |
void | for_each (PHNodeOperation &) |
PHCompositeNode * | get_currentNode () const |
Additional Inherited Members | |
![]() | |
PHCompositeNode * | currentNode |
PHPointerList< PHNode > | subNodeList |
A special PHOOL node iterator that simplifies finding and adding data nodes.
The methods are templated, rather than the class, to allow the same iterator object to be used with different data node types.
Definition at line 19 of file PHDataNodeIterator.h.
|
inline |
Constructor.
Definition at line 53 of file PHDataNodeIterator.h.
|
inlinevirtual |
Destructor.
Definition at line 27 of file PHDataNodeIterator.h.
PHBoolean PHDataNodeIterator::AddIODataNode | ( | T * | data, |
const char * | name | ||
) |
Adds a data node called "name" to the tree, and inserts "data". The data node is added at the current "directory" of this iterator object, so remember to "cd" to the desired location in the tree!
Definition at line 82 of file PHDataNodeIterator.h.
References PHNodeIterator::addNode(), and False.
PHIODataNode< T > * PHDataNodeIterator::FindIODataNode | ( | PHIODataNode< T > * | node, |
const char * | name | ||
) |
Finds an IODataNode of name "name" containing data of type "T". A null pointer will be returned if the node is not found, or if it contains data of the wrong type. Note that the return variable is also the first argument; this is necessary to resolve the template type.
Definition at line 61 of file PHDataNodeIterator.h.
References PHNodeIterator::findFirst().