diff options
Diffstat (limited to 'parameter-connector-test/ExamplePlatform.cpp')
-rw-r--r-- | parameter-connector-test/ExamplePlatform.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/parameter-connector-test/ExamplePlatform.cpp b/parameter-connector-test/ExamplePlatform.cpp index 5d60880..fd66654 100644 --- a/parameter-connector-test/ExamplePlatform.cpp +++ b/parameter-connector-test/ExamplePlatform.cpp @@ -124,3 +124,13 @@ bool CExamplePlatform::setState(CExamplePlatform::State eState, string& strError return _pParameterMgrPlatformConnector->applyConfigurations(strError); } +// Dynamic parameter access +bool CExamplePlatform::setValue(const string& strPath, const string& strValue, string& strError) +{ + return _pParameterMgrPlatformConnector->setValue(strPath, strValue, strError); +} + +bool CExamplePlatform::getValue(const string& strPath, string& strValue, string& strError) const +{ + return _pParameterMgrPlatformConnector->getValue(strPath, strValue, strError); +} |