aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/KindElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/KindElement.h')
-rw-r--r--parameter/KindElement.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/parameter/KindElement.h b/parameter/KindElement.h
index fa8eaaa..df826ff 100644
--- a/parameter/KindElement.h
+++ b/parameter/KindElement.h
@@ -31,18 +31,20 @@
#include "Element.h"
+#include <string>
+
class CKindElement : public CElement
{
public:
- CKindElement(const string& strName, const string& strKind) : CElement(strName), _strKind(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;
};