summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndriy Byzhynar <abyzhynar@luxoft.com>2018-07-27 14:15:40 +0300
committerAlexander <akutsan@luxoft.com>2018-08-21 12:30:03 +0300
commitd930a5414e13fa5c1b0cfdb6166d69c65540450a (patch)
tree346f535d44c550e8a09db5f16796dc79b2004631
parent890d96271c0159ed4ecfca3bfad4c04af9fd63fb (diff)
downloadsdl_core-d930a5414e13fa5c1b0cfdb6166d69c65540450a.tar.gz
Remove redundant function descriptions from Impl class
-rw-r--r--src/appMain/life_cycle_impl.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/appMain/life_cycle_impl.h b/src/appMain/life_cycle_impl.h
index b898f0c589..5dfc4641ab 100644
--- a/src/appMain/life_cycle_impl.h
+++ b/src/appMain/life_cycle_impl.h
@@ -74,46 +74,12 @@ class LifeCycleImpl : public LifeCycle {
public:
explicit LifeCycleImpl(const profile::Profile& profile);
- /**
- * Creates and starts all system components
- * @return true if all components started successfully
- * otherwise false.
- */
bool StartComponents() OVERRIDE;
-
- /**
- * Initialize MessageBroker component
- * @return true if success otherwise false.
- */
bool InitMessageSystem() OVERRIDE;
- /**
- * @brief Main loop
- */
void Run() OVERRIDE;
-
- /**
- * Stops all system components
- */
void StopComponents() OVERRIDE;
-
- /**
- * Makes appropriate actions when Low Voltage signal received:
- * Stops all SDL activities except of waiting of UNIX signals
- * from HMI
- */
void LowVoltage() OVERRIDE;
-
- /**
- * Makes appropriate actions when Wake Up signal received:
- * Restores all SDL activities stopped due to LOW VOLTAGE
- * from HMI
- */
void WakeUp() OVERRIDE;
-
- /**
- * Makes appropriate actions when Ignition Off signal received:
- * Triggers all SDL components stop and deletion
- */
void IgnitionOff() OVERRIDE;
private: