summaryrefslogtreecommitdiffstats
path: root/parameter/SubsystemLibrary.h
diff options
context:
space:
mode:
authorSebastien Gonzalve <oznog@zarb.org>2014-02-21 22:37:07 +0100
committerDavid Wagner <david.wagner@intel.com>2014-09-11 14:25:02 +0200
commitffbf43b383bb8693741430b02c24dbc9b127f7f7 (patch)
tree7b4d9d72d456adeb5f5bf470ed78e3c5045ecd25 /parameter/SubsystemLibrary.h
parentf811b7b53c0c2f0d4320c70230e609619c5087c1 (diff)
downloadexternal_parameter-framework-ffbf43b383bb8693741430b02c24dbc9b127f7f7.zip
external_parameter-framework-ffbf43b383bb8693741430b02c24dbc9b127f7f7.tar.gz
external_parameter-framework-ffbf43b383bb8693741430b02c24dbc9b127f7f7.tar.bz2
Remove useless cpp's
Those files are empty or almost empty, put remaining stuff in header if necessary.
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");
+ }
};