Class Reference for E1039 Core & Analysis Software
PHNode.cc
Go to the documentation of this file.
1 // Author: Matthias Messer
2 
3 #include "PHNode.h"
4 
5 #include <cstdlib>
6 #include <iostream>
7 
8 using namespace std;
9 
11  parent(NULL),
12  persistent(true),
13  type("PHNode"),
14  reset_able(true)
15 {
16  return;
17 }
18 
19 PHNode::PHNode(const string& n) :
20  parent(NULL),
21  persistent(true),
22  type("PHNode"),
23  reset_able(true)
24 {
25  if (n.find(".") != string::npos)
26  {
27  cout << PHWHERE << " No nodenames containing decimal point possible: "
28  << n << endl;
29  exit(1);
30  }
31  name = n;
32  return;
33 }
34 
35 PHNode::PHNode(const string& n, const string& typ) :
36  parent(NULL),
37  persistent(true),
38  type("PHNode"),
39  objecttype(typ),
40  reset_able(true)
41 {
42  if (n.find(".") != string::npos)
43  {
44  cout << PHWHERE << " No nodenames containing decimal point possible: "
45  << n << endl;
46  exit(1);
47  }
48  name = n;
49  return;
50 }
51 
53 {
54  if (parent)
55  {
56  parent->forgetMe(this);
57  }
58 }
59 
60 PHNode::PHNode(const PHNode &phn):
61  parent(NULL),
62  persistent(phn.persistent),
63  type(phn.type),
64  objecttype(phn.objecttype),
65  name(phn.name),
66  objectclass(phn.objectclass),
67  reset_able(phn.reset_able)
68 {
69  cout << "copy ctor not implemented because of pointer to parent" << endl;
70  cout << "which needs implementing for this to be reasonable" << endl;
71  exit(1);
72 }
73 
74 PHNode &
76 {
77  cout << "= operator not implemented because of pointer to parent" << endl;
78  cout << "which needs implementing for this to be reasonable" << endl;
79  exit(1);
80 }
81 
82 void
83 PHNode::setResetFlag(const int val)
84 {
85  reset_able = (val) ? true : false;
86 }
87 
88 PHBoolean
90 {
91  return reset_able;
92 }
93 
94 // Implementation of external functions.
95 std::ostream &
96 operator << (std::ostream & stream, const PHNode & node)
97 {
98  stream << node.getType() << " : " << node.getName() << " class " << node.getClass();
99 
100  return stream;
101 }
102 
std::ostream & operator<<(std::ostream &stream, const PHNode &node)
Definition: PHNode.cc:96
#define NULL
Definition: Pdb.h:9
Definition: PHNode.h:15
const std::string getType() const
Definition: PHNode.h:31
bool reset_able
Definition: PHNode.h:59
PHNode & operator=(const PHNode &)
Definition: PHNode.cc:75
virtual void setResetFlag(const int val)
Definition: PHNode.cc:83
const std::string getClass() const
Definition: PHNode.h:33
PHNode()
Definition: PHNode.cc:10
virtual void forgetMe(PHNode *)=0
const std::string getName() const
Definition: PHNode.h:32
virtual PHBoolean getResetFlag() const
Definition: PHNode.cc:89
virtual ~PHNode()
Definition: PHNode.cc:52
std::string name
Definition: PHNode.h:57
PHNode * parent
Definition: PHNode.h:53
int PHBoolean
Definition: phool.h:13
#define PHWHERE
Definition: phool.h:23