SST/macro
sleep_event.h
Go to the documentation of this file.
1 #ifndef SLEEP_MESSAGE_H
2 #define SLEEP_MESSAGE_H
3 
5 
6 namespace sstmac {
7 
8 class sleep_event :
9  public timed_interface,
10  public event
11 {
13 
14  public:
16  timed_interface(t) {
17  }
18 
19  std::string
20  to_string() const {
21  return "sleep message";
22  }
23 
24 
25 };
26 
27 }
28 
29 #endif // SLEEP_MESSAGE_H
30 
std::string to_string() const
Definition: sleep_event.h:20
A basic container for time (subject to future transplant).
Definition: timestamp.h:29
SUMI = Simulator unified messagine interface It is also the name for a solid ink in Japanese - i...
NotSerializable(sleep_event) public
Definition: sleep_event.h:12