aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/SubsystemLibrary.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/SubsystemLibrary.h')
-rw-r--r--parameter/SubsystemLibrary.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/parameter/SubsystemLibrary.h b/parameter/SubsystemLibrary.h
index 60367f3..78a497e 100644
--- a/parameter/SubsystemLibrary.h
+++ b/parameter/SubsystemLibrary.h
@@ -39,5 +39,9 @@ class CSubsystemLibrary :
{
private:
// Builder type (based on element's name attribute)
- virtual std::string getBuilderType(const CXmlElement& xmlElement) const;
+ virtual std::string getBuilderType(const CXmlElement& xmlElement) const
+ {
+ // Xml element's name attribute
+ return xmlElement.getAttributeString("Type");
+ }
};