rad  2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
actionMgr.hpp
Go to the documentation of this file.
1 
9 #ifndef HELLOMAL_ACTION_MGR_HPP_
10 #define HELLOMAL_ACTION_MGR_HPP_
11 
12 #include <rad/actionMgr.hpp>
13 #include <rad/msgReplier.hpp>
14 #include <rad/smAdapter.hpp>
15 
16 #include <scxml4cpp/EventQueue.h>
17 
18 #include <boost/asio.hpp>
19 
20 namespace hellomal {
21 
22 class DataContext;
23 class ActionsStd;
24 
29 class ActionMgr : public rad::ActionMgr {
30  public:
34  ActionMgr();
35 
39  virtual ~ActionMgr();
40 
48  void CreateActions(boost::asio::io_service& ios,
49  rad::SMAdapter& sm,
50  DataContext& the_data);
51 
58  void CreateActivities(rad::SMAdapter& sm, DataContext& the_data);
59 
60  ActionMgr(const ActionMgr&) = delete;
61  ActionMgr& operator=(const ActionMgr&) = delete;
62 };
63 
64 } // namespace hellomal
65 
66 #endif // HELLOMAL_ACTION_MGR_HPP_
void CreateActions(boost::asio::io_service &ios, rad::SMAdapter &sm, DataContext &the_data)
Definition: actionMgr.cpp:31
Definition: actionMgr.hpp:36
Definition: smAdapter.hpp:42
void CreateActivities(rad::SMAdapter &sm, DataContext &the_data)
Definition: actionMgr.cpp:107
ActionMgr()
Definition: actionMgr.cpp:23
virtual ~ActionMgr()
Definition: actionMgr.cpp:27
ActionMgr & operator=(const ActionMgr &)=delete
Disable copy constructor.