SST/macro
patinkin.h
Go to the documentation of this file.
1 #include "actor.h"
2 
3 namespace sstmac {
4 namespace tutorial {
5 
7  public actor
8 {
9 
10  public:
11  std::string
12  to_string() const {
13  return "inigo montoya";
14  }
15 
16  static ptr
17  construct(sprockit::sim_parameters* params) {
18  return new mandy_patinkin;
19  }
20 
21  virtual void
22  init_factory_params(sprockit::sim_parameters* params);
23 
24  virtual void
25  act();
26 
27  protected:
28  std::string sword_hand_;
29 
30 };
31 
32 }
33 }
34 
35 
std::string to_string() const
Definition: patinkin.h:12
static ptr construct(sprockit::sim_parameters *params)
Definition: patinkin.h:17
SUMI = Simulator unified messagine interface It is also the name for a solid ink in Japanese - i...
virtual void init_factory_params(sprockit::sim_parameters *params)