Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
director.h
Go to the documentation of this file.
1 
15 #ifndef DIRECTOR_INCLUDED
16 #define DIRECTOR_INCLUDED
17 
18 #include "defs.h"
19 #include "commonParameters.h"
20 #include "bridgeIO.h"
21 
23 
33 class Director
34 {
35  protected:
37 
38  public:
40  : m_vl(CommonParameters::Vlevel()) {}
41  virtual ~Director() {}
42 
43  // To be called when link variable is updated.
44  virtual void notify_linkv() = 0;
45 
47 };
48 #endif
virtual void notify_linkv()=0
Director()
Definition: director.h:39
void set_parameter_verboselevel(const Bridge::VerboseLevel vl)
Definition: director.h:46
Manager of commonly used data object in HMC.
Definition: director.h:33
Bridge::VerboseLevel m_vl
Definition: director.h:36
Common parameter class: provides parameters as singleton.
Bridge::VerboseLevel vl
Definition: checker.cpp:18
VerboseLevel
Definition: bridgeIO.h:25
virtual ~Director()
Definition: director.h:41