Class Reference for E1039 Core & Analysis Software
PHNodeIterator.h
Go to the documentation of this file.
1 #ifndef PHNODEITERATOR_H__
2 #define PHNODEITERATOR_H__
3 
4 // Declaration of class PHNodeIterator
5 // Purpose: iterator to navigate a node tree
6 // Author: Matthias Messer
7 
8 #include "phool.h"
9 #include "PHCompositeNode.h"
10 #include "PHPointerList.h"
11 
12 class PHNodeOperation;
13 
15 
16 public:
18  virtual ~PHNodeIterator() {}
19  PHNodeIterator();
20 
21 public:
22  void print();
24  PHNode* findFirst(const std::string&, const std::string&);
25  PHNode* findFirst(const std::string&);
26  PHBoolean cd(const std::string &pathString = "");
28  void forEach(PHNodeOperation&);
31 
32 protected:
35 
36 };
37 
38 #endif /* __PHNODEITERATOR_H__ */
void for_each(PHNodeOperation &)
PHPointerList< PHNode > & ls()
PHBoolean addNode(PHNode *)
PHCompositeNode * get_currentNode() const
PHBoolean cd(const std::string &pathString="")
virtual ~PHNodeIterator()
PHPointerList< PHNode > subNodeList
PHCompositeNode * currentNode
PHNode * findFirst(const std::string &, const std::string &)
void forEach(PHNodeOperation &)
Definition: PHNode.h:15
int PHBoolean
Definition: phool.h:13