WRENCH  1.11
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
ActionExecutorMessage.h
1 
11 #ifndef WRENCH_ACTIONEXECUTORMESSAGE_H
12 #define WRENCH_ACTIONEXECUTORMESSAGE_H
13 
14 
15 #include "wrench/simulation/SimulationMessage.h"
16 #include "wrench-dev.h"
17 
18 namespace wrench {
19 
20  /***********************/
22  /***********************/
23 
24  class ActionExecutor;
25 
29  class ActionExecutorMessage : public SimulationMessage {
30  protected:
31  explicit ActionExecutorMessage();
32  };
33 
37  class ActionExecutorDoneMessage : public ActionExecutorMessage {
38  public:
39  explicit ActionExecutorDoneMessage(std::shared_ptr<ActionExecutor> action_executor);
41  std::shared_ptr<ActionExecutor> action_executor;
42  };
43 
44  /***********************/
46  /***********************/
47 
48 };
49 
50 #endif //WRENCH_ACTIONEXECUTORMESSAGE_H
wrench
Definition: Action.cpp:28