Class Reference for E1039 Core & Analysis Software
PHCompositeNode.h
Go to the documentation of this file.
1 #ifndef PHCOMPOSITENODE_H__
2 #define PHCOMPOSITENODE_H__
3 
4 // Declaration of class PHCompositeNode
5 // Purpose: a node which can hold other nodes
6 
7 #include "phool.h"
8 #include "PHNode.h"
9 #include "PHPointerList.h"
10 
11 class PHIOManager;
12 class PHNodeIterator;
13 
14 class PHCompositeNode : public PHNode {
15 
16  friend class PHNodeIterator;
17 
18 public:
19  PHCompositeNode(const std::string &);
20  virtual ~PHCompositeNode();
21 
22  //
23  // The user is only allowed to add new nodes, not to delete existing ones.
24  //
26 
27  //
28  // This recursively calls the prune function of all the subnodes.
29  // If a subnode is found to be marked as transient (non persistent)
30  // the entire sub-tree is deleted.
31  //
32  virtual void prune();
33 
34  //
35  // I/O functions
36  //
37  void print(const std::string & = "");
38  virtual bool write(PHIOManager *, const std::string & = "");
39 
40 protected:
41  virtual void forgetMe(PHNode*);
43  int deleteMe;
44 
45 private:
47 };
48 
49 #endif /* PHCOMPOSITENODE_H__ */
virtual void forgetMe(PHNode *)
virtual void prune()
PHPointerList< PHNode > subNodes
void print(const std::string &="")
virtual bool write(PHIOManager *, const std::string &="")
PHBoolean addNode(PHNode *)
virtual ~PHCompositeNode()
Definition: PHNode.h:15
int PHBoolean
Definition: phool.h:13