Class Reference for E1039 Core & Analysis Software
PHNodeReset.h
Go to the documentation of this file.
1 #ifndef PHNodeReset_h
2 #define PHNodeReset_h
3 
4 // Declaration of class PHNodeReset
5 // Purpose: strategy which calls reset() on a PHNode
6 // Author: Matthias Messer
7 
8 #include "PHNodeOperation.h"
9 
10 class PHNode;
11 
13 {
14  public:
16  virtual ~PHNodeReset() {}
17  protected:
18  virtual void perform(PHNode*);
19 };
20 
21 #endif /* PHNodeReset_h */
virtual void perform(PHNode *)
Definition: PHNodeReset.cc:13
virtual ~PHNodeReset()
Definition: PHNodeReset.h:16
Definition: PHNode.h:15