summaryrefslogtreecommitdiffstats
path: root/parameter/ParameterMgr.cpp
diff options
context:
space:
mode:
authorDavid Wagner <david.wagner@intel.com>2015-01-12 13:54:47 +0100
committerDavid Wagner <david.wagner@intel.com>2015-01-28 20:01:32 +0100
commitfaa623c40bcfba17f222b738c036cd8fdcdd3a4d (patch)
tree78a122bef2592d7405a0482f83b7ba583458d13d /parameter/ParameterMgr.cpp
parent23e217c5edc47e08bd44222a2df0d3a876d3aeec (diff)
downloadexternal_parameter-framework-faa623c40bcfba17f222b738c036cd8fdcdd3a4d.zip
external_parameter-framework-faa623c40bcfba17f222b738c036cd8fdcdd3a4d.tar.gz
external_parameter-framework-faa623c40bcfba17f222b738c036cd8fdcdd3a4d.tar.bz2
Add {get,set}SchemaFolderLocation() to the public Pfw API
It will allow users to tell the parameter-framework where the Schemas are instead of letting it guess. These methods are also added to both "Platform" and "Full" connectors. Change-Id: I7fe3b2fd2c6dba1d90d36de97e6db7d71b2c686f Signed-off-by: David Wagner <david.wagner@intel.com>
Diffstat (limited to 'parameter/ParameterMgr.cpp')
-rw-r--r--parameter/ParameterMgr.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/parameter/ParameterMgr.cpp b/parameter/ParameterMgr.cpp
index b81243d..1d77666 100644
--- a/parameter/ParameterMgr.cpp
+++ b/parameter/ParameterMgr.cpp
@@ -846,6 +846,16 @@ bool CParameterMgr::getFailureOnFailedSettingsLoad()
return _bFailOnFailedSettingsLoad;
}
+const string& CParameterMgr::getSchemaFolderLocation() const
+{
+ return _strSchemaFolderLocation;
+}
+
+void CParameterMgr::setSchemaFolderLocation(const string& strSchemaFolderLocation)
+{
+ _strSchemaFolderLocation = strSchemaFolderLocation;
+}
+
void CParameterMgr::setValidateSchemasOnStart(bool bValidate)
{
_bValidateSchemasOnStart = bValidate;