diff options
author | Sébastien Gonzalve <oznog@users.noreply.github.com> | 2015-02-28 21:00:07 +0100 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:39:13 -0700 |
commit | dea4e788adf3a2432ad2835cef0d235e9f93e260 (patch) | |
tree | 3874c8e9b10e142bb4480c95161e96dac8681818 /parameter/ParameterMgr.h | |
parent | e388d91e3797dc0adef0022eab503b5bc6f2e5ca (diff) | |
download | external_parameter-framework-dea4e788adf3a2432ad2835cef0d235e9f93e260.zip external_parameter-framework-dea4e788adf3a2432ad2835cef0d235e9f93e260.tar.gz external_parameter-framework-dea4e788adf3a2432ad2835cef0d235e9f93e260.tar.bz2 |
stop messing around with useless pointer
Backsynchronizer is dynamically allocated for simulation purpose.
Nevertheless, this is useless as this can be easily achieved thanks to a
typedef.
This patch simplify the backsynchronization use.
Signed-off-by: Sébastien Gonzalve <oznog@users.noreply.github.com>
Diffstat (limited to 'parameter/ParameterMgr.h')
-rw-r--r-- | parameter/ParameterMgr.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/parameter/ParameterMgr.h b/parameter/ParameterMgr.h index 9c6d6fd..d0b71bd 100644 --- a/parameter/ParameterMgr.h +++ b/parameter/ParameterMgr.h @@ -52,7 +52,6 @@ class CSystemClassConfiguration; class CParameterBlackboard; class CConfigurableDomains; class IRemoteProcessorServerInterface; -class CBackSynchronizer; class CParameterHandle; class CSubsystemPlugins; class CParameterAccessContext; @@ -573,9 +572,6 @@ private: // Remote Processor Server connection handling bool handleRemoteProcessingInterface(std::string& strError); - // Back synchronization - CBackSynchronizer* createBackSynchronizer() const; - // Tuning bool _bTuningModeIsOn; |