diff options
Diffstat (limited to 'parameter/InstanceConfigurableElement.cpp')
-rw-r--r-- | parameter/InstanceConfigurableElement.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/parameter/InstanceConfigurableElement.cpp b/parameter/InstanceConfigurableElement.cpp index 40ef18b..cc84a3e 100644 --- a/parameter/InstanceConfigurableElement.cpp +++ b/parameter/InstanceConfigurableElement.cpp @@ -55,6 +55,13 @@ bool CInstanceConfigurableElement::getMappingData(const string& strKey, const st return getTypeElement()->getMappingData(strKey, pStrValue); } +// Returns the formatted mapping +string CInstanceConfigurableElement::getFormattedMapping() const +{ + // Delegate + return getTypeElement()->getFormattedMapping(); +} + bool CInstanceConfigurableElement::map(IMapper& mapper, string& strError) { bool bHasMappingData = getTypeElement()->hasMappingData(); |