summaryrefslogtreecommitdiff
path: root/src/appMain/life_cycle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/appMain/life_cycle.h')
-rw-r--r--src/appMain/life_cycle.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/appMain/life_cycle.h b/src/appMain/life_cycle.h
index 9096bff7b8..3494575680 100644
--- a/src/appMain/life_cycle.h
+++ b/src/appMain/life_cycle.h
@@ -80,6 +80,10 @@ class LifeCycle : public utils::Singleton<LifeCycle> {
* @return true if success otherwise false.
*/
bool InitMessageSystem();
+ /**
+ * \brief Main loop
+ */
+ void Run();
void StopComponents();
private:
@@ -113,7 +117,7 @@ class LifeCycle : public utils::Singleton<LifeCycle> {
#endif // MESSAGEBROKER_HMIADAPTER
- bool components_started;
+ bool components_started_;
FRIEND_BASE_SINGLETON_CLASS(LifeCycle);
DISALLOW_COPY_AND_ASSIGN(LifeCycle);
};