diff options
Diffstat (limited to 'parameter/KindElement.h')
-rw-r--r-- | parameter/KindElement.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/parameter/KindElement.h b/parameter/KindElement.h index 656e133..df826ff 100644 --- a/parameter/KindElement.h +++ b/parameter/KindElement.h @@ -31,13 +31,20 @@ #include "Element.h" +#include <string> + class CKindElement : public CElement { public: - CKindElement(const string& strName, const string& strKind); + CKindElement(const std::string& strName, const std::string& strKind) : CElement(strName), _strKind(strKind) + { + } - virtual string getKind() const; + virtual std::string getKind() const + { + return _strKind; + } private: - string _strKind; + std::string _strKind; }; |