ifw  0.0.1-dev
 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 SERVER_ACTION_MGR_HPP_
10 #define SERVER_ACTION_MGR_HPP_
11 
12 #include <rad/ActionMgr.hpp>
13 #include <rad/Dispatcher.hpp>
14 #include <rad/MsgReplier.hpp>
15 #include <rad/SMAdapter.hpp>
16 
17 #include <scxml4cpp/EventQueue.h>
18 
19 #include <boost/asio.hpp>
20 
21 namespace server {
22 
23 class DataContext;
24 class ActionsStd;
25 class ActionsMove;
26 class ActionsPreset;
27 
32 class ActionMgr : public rad::ActionMgr {
33  public:
37  ActionMgr();
38 
42  virtual ~ActionMgr();
43 
52  void CreateActions(boost::asio::io_service& ios,
53  rad::Dispatcher& dispatcher,
54  rad::MsgReplier& msg_replier,
55  DataContext& the_data);
56 
63  void CreateActivities(DataContext& the_data, rad::SMAdapter& sm);
64 
65  ActionMgr(const ActionMgr&) = delete;
66  ActionMgr& operator=(const ActionMgr&) = delete;
67 };
68 
69 } // namespace server
70 
71 #endif // {cookiecutter.module_name|upper}}_ACTION_MGR_HPP_
virtual ~ActionMgr()
Definition: actionMgr.cpp:27
Definition: MsgReplier.hpp:29
ActionMgr & operator=(const ActionMgr &)=delete
Disable copy constructor.
ActionMgr()
Definition: actionMgr.cpp:23
def server
Definition: hellorad.py:88
Definition: ActionMgr.hpp:38
Definition: Dispatcher.hpp:22
Definition: SMAdapter.hpp:43
void CreateActions(boost::asio::io_service &ios, rad::Dispatcher &dispatcher, rad::MsgReplier &msg_replier, DataContext &the_data)
Definition: actionMgr.cpp:31
void CreateActivities(DataContext &the_data, rad::SMAdapter &sm)
Definition: actionMgr.cpp:113