summaryrefslogtreecommitdiffstats
path: root/parameter/BaseParameter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/BaseParameter.cpp')
-rw-r--r--parameter/BaseParameter.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/parameter/BaseParameter.cpp b/parameter/BaseParameter.cpp
index caa9daa..7ca96a7 100644
--- a/parameter/BaseParameter.cpp
+++ b/parameter/BaseParameter.cpp
@@ -218,3 +218,10 @@ bool CBaseParameter::accessValue(CPathNavigator& pathNavigator, string& strValue
return accessAsString(strValue, bSet, parameterAccessContext);
}
+
+void CBaseParameter::toXml(CXmlElement& xmlElement, CXmlSerializingContext& serializingContext) const
+{
+
+ // Delegate to type element
+ getTypeElement()->toXml(xmlElement, serializingContext);
+}