From ffbf43b383bb8693741430b02c24dbc9b127f7f7 Mon Sep 17 00:00:00 2001 From: Sebastien Gonzalve Date: Fri, 21 Feb 2014 22:37:07 +0100 Subject: Remove useless cpp's Those files are empty or almost empty, put remaining stuff in header if necessary. --- parameter/Component.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'parameter/Component.h') diff --git a/parameter/Component.h b/parameter/Component.h index 850b7a6..2950912 100644 --- a/parameter/Component.h +++ b/parameter/Component.h @@ -34,10 +34,14 @@ class CComponent : public CInstanceConfigurableElement { public: - CComponent(const string& strName, const CTypeElement* pTypeElement); + CComponent(const string& strName, const CTypeElement* pTypeElement) : CInstanceConfigurableElement(strName, pTypeElement) + { + } // Type - virtual Type getType() const; -private: + virtual Type getType() const + { + return EComponent; + } }; -- cgit v1.1