WRENCH  1.11
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
ExecutionControllerMessage.h
1 
10 #ifndef WRENCH_EXECUTIONCONTROLLERMESSAGE_H
11 #define WRENCH_EXECUTIONCONTROLLERMESSAGE_H
12 
13 #include "wrench/simulation/SimulationMessage.h"
14 
15 namespace wrench {
16 
17  /***********************/
19  /***********************/
20 
24  class ExecutionControllerMessage : public SimulationMessage {
25  protected:
26  ExecutionControllerMessage(double payload);
27  };
28 
29 
33  class ExecutionControllerAlarmTimerMessage : public ExecutionControllerMessage {
34  public:
35  explicit ExecutionControllerAlarmTimerMessage(std::string message, double payload);
37  std::string message;
38  };
39 
40 
41  /***********************/
43  /***********************/
44 }
45 
46 #endif //WRENCH_EXECUTIONCONTROLLERMESSAGE_H
wrench
Definition: Action.cpp:28