rad  3.0.0
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/smAdapter.hpp>
14 
15 #include <scxml4cpp/EventQueue.h>
16 
17 #include <boost/asio.hpp>
18 
19 namespace hellomal {
20 
21 class DataContext;
22 class ActionsStd;
23 
28 class ActionMgr : public rad::ActionMgr {
29  public:
33  ActionMgr();
34 
38  virtual ~ActionMgr();
39 
47  void CreateActions(boost::asio::io_service& ios,
48  rad::SMAdapter& sm,
49  DataContext& the_data);
50 
57  void CreateActivities(rad::SMAdapter& sm, DataContext& the_data);
58 
59  ActionMgr(const ActionMgr&) = delete;
60  ActionMgr& operator=(const ActionMgr&) = delete;
61 };
62 
63 } // namespace hellomal
64 
65 #endif // HELLOMAL_ACTION_MGR_HPP_
hellomal::ActionMgr::CreateActions
void CreateActions(boost::asio::io_service &ios, rad::SMAdapter &sm, DataContext &the_data)
Definition: actionMgr.cpp:31
rad::SMAdapter
Definition: smAdapter.hpp:60
hellomal::ActionMgr::ActionMgr
ActionMgr()
Definition: actionMgr.cpp:23
hellomal::DataContext
Definition: dataContext.hpp:21
hellomal
Definition: actionMgr.cpp:21
rad::ActionMgr
Definition: actionMgr.hpp:36
hellomal::ActionMgr::CreateActivities
void CreateActivities(rad::SMAdapter &sm, DataContext &the_data)
Definition: actionMgr.cpp:112
hellomal::ActionMgr::~ActionMgr
virtual ~ActionMgr()
Definition: actionMgr.cpp:27
hellomal::ActionMgr::ActionMgr
ActionMgr(const ActionMgr &)=delete
hellomal::ActionMgr
Definition: actionMgr.hpp:28
hellomal::ActionMgr::operator=
ActionMgr & operator=(const ActionMgr &)=delete
Disable copy constructor.