ifw-fcf 8.0.2
 
Loading...
Searching...
No Matches
actionMgr.hpp
Go to the documentation of this file.
1
7
8#ifndef FCF_FCF_DEVMGR_COMMON_ACTION_MGR_HPP_
9#define FCF_FCF_DEVMGR_COMMON_ACTION_MGR_HPP_
10
11#include <rad/actionMgr.hpp>
12#include <rad/msgReplier.hpp>
13#include <rad/smAdapter.hpp>
14#include <ifw/core/utils/bat/logger.hpp>
15#include <scxml4cpp/EventQueue.h>
16#include <mal/Mal.hpp>
17#include <boost/asio.hpp>
18
19namespace mal = ::elt::mal;
20
22
23class DataContext;
24class ActionsStd;
25class ActionsInit;
26class DeviceFacade;
27
32class ActionMgr : public rad::ActionMgr {
33 public:
37 ActionMgr();
38
42 virtual ~ActionMgr();
43
52 virtual void CreateActions(boost::asio::io_service& ios,
53 mal::Mal& mal,
54 rad::SMAdapter& sm,
55 DataContext& the_data,
56 DeviceFacade& device_facade);
57
65 virtual void CreateActivities(rad::SMAdapter& sm, DataContext& the_data,
66 DeviceFacade& device_facade);
67
68 ActionMgr(const ActionMgr&) = delete;
69 ActionMgr& operator=(const ActionMgr&) = delete;
70
71private:
72 log4cplus::Logger m_logger;
73};
74
75} // namespace server
76
77#endif // FCF_FCF_DEVMGR_COMMON_ACTION_MGR_HPP_
virtual void CreateActivities(rad::SMAdapter &sm, DataContext &the_data, DeviceFacade &device_facade)
Definition actionMgr.cpp:433
ActionMgr()
Definition actionMgr.cpp:30
ActionMgr & operator=(const ActionMgr &)=delete
Disable copy constructor.
ActionMgr(const ActionMgr &)=delete
virtual void CreateActions(boost::asio::io_service &ios, mal::Mal &mal, rad::SMAdapter &sm, DataContext &the_data, DeviceFacade &device_facade)
Definition actionMgr.cpp:36
virtual ~ActionMgr()
Definition actionMgr.cpp:33
Definition actionsInit.hpp:30
Definition actionsStd.hpp:55
Definition dataContext.hpp:86
Definition deviceFacade.hpp:59
ActionMgr class source file.
Definition actionMgr.cpp:28