aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/ParameterMgrPlatformConnector.cpp
diff options
context:
space:
mode:
authorDavid Wagner <david.wagner@intel.com>2015-01-06 18:27:08 +0100
committerDavid Wagner <david.wagner@intel.com>2015-01-22 12:02:31 +0100
commitd700782e7dae31cbef37ae038b992d2cb0c6f6a4 (patch)
tree2c67728ffa3830a1fdc4c5ed5798da2b144e85e5 /parameter/ParameterMgrPlatformConnector.cpp
parent70e458c1bb62ad39ea9c59339e74e1f7702910ee (diff)
downloadexternal_parameter-framework-d700782e7dae31cbef37ae038b992d2cb0c6f6a4.zip
external_parameter-framework-d700782e7dae31cbef37ae038b992d2cb0c6f6a4.tar.gz
external_parameter-framework-d700782e7dae31cbef37ae038b992d2cb0c6f6a4.tar.bz2
Make ParameterMgrLogger template
This will make it possible to have different kind of ParameterMgr connectors instead of hardcoding ParameterMgrPlatformConnector in ParameterMgrLogger. Change-Id: Ia78d9f56c8cc73321e1956856755a56a3569b517 Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'parameter/ParameterMgrPlatformConnector.cpp')
-rw-r--r--parameter/ParameterMgrPlatformConnector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/parameter/ParameterMgrPlatformConnector.cpp b/parameter/ParameterMgrPlatformConnector.cpp
index b98692c..7a8511b 100644
--- a/parameter/ParameterMgrPlatformConnector.cpp
+++ b/parameter/ParameterMgrPlatformConnector.cpp
@@ -40,7 +40,7 @@ CParameterMgrPlatformConnector::CParameterMgrPlatformConnector(
_pParameterMgr(new CParameterMgr(strConfigurationFilePath)), _bStarted(false), _pLogger(NULL)
{
// Logging
- _pParameterMgrLogger = new CParameterMgrLogger(this);
+ _pParameterMgrLogger = new CParameterMgrLogger<CParameterMgrPlatformConnector>(*this);
_pParameterMgr->setLogger(_pParameterMgrLogger);
}