summaryrefslogtreecommitdiff
path: root/src/appMain/life_cycle.h
diff options
context:
space:
mode:
authorconlain-k <conlain.k@gmail.com>2018-07-24 15:31:47 -0400
committerGitHub <noreply@github.com>2018-07-24 15:31:47 -0400
commit90db9ca480eabeaf85ec77626b1bf10fa491270d (patch)
tree1061840e02be20e216cca72685113ceffd592981 /src/appMain/life_cycle.h
parente1d597dafe130e73d68d7ccbd84a6b63db2a329f (diff)
parenta773acc84a6836129f1d9bc4b8b723b9e7301e0c (diff)
downloadsdl_core-90db9ca480eabeaf85ec77626b1bf10fa491270d.tar.gz
Merge branch 'develop' into feature/boost_filesystem_implementation
Diffstat (limited to 'src/appMain/life_cycle.h')
-rw-r--r--src/appMain/life_cycle.h17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/appMain/life_cycle.h b/src/appMain/life_cycle.h
index db18892cd3..a9b18e1bd9 100644
--- a/src/appMain/life_cycle.h
+++ b/src/appMain/life_cycle.h
@@ -33,22 +33,15 @@
#ifndef SRC_APPMAIN_LIFE_CYCLE_H_
#define SRC_APPMAIN_LIFE_CYCLE_H_
#include <thread>
+#include <unistd.h>
#include "utils/macro.h"
-#include "unistd.h"
#include "config_profile/profile.h"
#include "hmi_message_handler/hmi_message_handler_impl.h"
-#ifdef DBUS_HMIADAPTER
-#include "hmi_message_handler/dbus_message_adapter.h"
-#endif // DBUS_HMIADAPTER
#if (defined(MESSAGEBROKER_HMIADAPTER) || defined(PASA_HMI))
#include "hmi_message_handler/messagebroker_adapter.h"
#endif // #if ( defined (MESSAGEBROKER_HMIADAPTER) || defined(PASA_HMI) )
#include "application_manager/application_manager_impl.h"
-#ifdef SDL_REMOTE_CONTROL
-#include "application_manager/core_service.h"
-#include "functional_module/plugin_manager.h"
-#endif // SDL_REMOTE_CONTROL
#include "connection_handler/connection_handler_impl.h"
#include "protocol_handler/protocol_handler_impl.h"
#include "transport_manager/transport_manager.h"
@@ -65,6 +58,10 @@ class SecurityManagerImpl;
} // namespace security_manager
#endif // ENABLE_SECURITY
+namespace utils {
+class SystemTimeHandler;
+} // namespace utils
+
namespace main_namespace {
class LifeCycle {
public:
@@ -98,10 +95,6 @@ class LifeCycle {
#ifdef TELEMETRY_MONITOR
telemetry_monitor::TelemetryMonitor* telemetry_monitor_;
#endif // TELEMETRY_MONITOR
-#ifdef DBUS_HMIADAPTER
- hmi_message_handler::DBusMessageAdapter* dbus_adapter_;
- std::thread* dbus_adapter_thread_;
-#endif // DBUS_HMIADAPTER
#ifdef MESSAGEBROKER_HMIADAPTER
hmi_message_handler::MessageBrokerAdapter* mb_adapter_;