SST/macro
actor.h
Go to the documentation of this file.
2 
3 namespace sstmac {
4 namespace tutorial {
5 
6 class actor :
8 {
9 
10  public:
11  virtual void
12  act() = 0;
13 
14  virtual ~actor() {}
15 
16  virtual void
17  init_factory_params(sprockit::sim_parameters* params);
18 
19  virtual actor*
20  clone() const = 0;
21 
22  protected:
23  std::string biggest_fan_;
24 };
25 
27 
28 }
29 }
30 
virtual void init_factory_params(sprockit::sim_parameters *params)
std::string biggest_fan_
Definition: actor.h:23
virtual ~actor()
Definition: actor.h:14
virtual void act()=0
virtual actor * clone() const =0
SUMI = Simulator unified messagine interface It is also the name for a solid ink in Japanese - i...