diff options
Diffstat (limited to 'parameter/ParameterFrameworkConfiguration.h')
-rw-r--r-- | parameter/ParameterFrameworkConfiguration.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/parameter/ParameterFrameworkConfiguration.h b/parameter/ParameterFrameworkConfiguration.h index 7a3df94..a261775 100644 --- a/parameter/ParameterFrameworkConfiguration.h +++ b/parameter/ParameterFrameworkConfiguration.h @@ -31,13 +31,15 @@ #include "Element.h" +#include <string> + class CParameterFrameworkConfiguration : public CElement { public: CParameterFrameworkConfiguration(); // System class name - const string& getSystemClassName() const; + const std::string& getSystemClassName() const; // Tuning allowed bool isTuningAllowed() const; @@ -48,11 +50,11 @@ public: // From IXmlSink virtual bool fromXml(const CXmlElement& xmlElement, CXmlSerializingContext& serializingContext); private: - virtual string getKind() const; + virtual std::string getKind() const; virtual bool childrenAreDynamic() const; // System class name - string _strSystemClassName; + std::string _strSystemClassName; // Tuning allowed bool _bTuningAllowed; // Server port |