diff options
Diffstat (limited to 'parameter/SelectionCriteria.h')
-rw-r--r-- | parameter/SelectionCriteria.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/parameter/SelectionCriteria.h b/parameter/SelectionCriteria.h index 6960cd9..122b8a2 100644 --- a/parameter/SelectionCriteria.h +++ b/parameter/SelectionCriteria.h @@ -34,6 +34,8 @@ #include "SelectionCriterionType.h" #include "SelectionCriterion.h" +#include <string> + class CSelectionCriterionLibrary; class CSelectionCriteriaDefinition; class ISelectionCriterionObserver; @@ -49,18 +51,18 @@ public: // Selection Criteria/Type creation CSelectionCriterionType* createSelectionCriterionType(bool bIsInclusive); - CSelectionCriterion* createSelectionCriterion(const string& strName, const CSelectionCriterionType* pSelectionCriterionType); + CSelectionCriterion* createSelectionCriterion(const std::string& strName, const CSelectionCriterionType* pSelectionCriterionType); // Selection criterion retrieval - CSelectionCriterion* getSelectionCriterion(const string& strName); + CSelectionCriterion* getSelectionCriterion(const std::string& strName); // Selection Criterion definition const CSelectionCriteriaDefinition* getSelectionCriteriaDefinition() const; // List available criteria - void listSelectionCriteria(list<string>& strResult, bool bWithTypeInfo, bool bHumanReadable) const; + void listSelectionCriteria(std::list<std::string>& strResult, bool bWithTypeInfo, bool bHumanReadable) const; // Base - virtual string getKind() const; + virtual std::string getKind() const; // Reset the modified status of the children void resetModifiedStatus(); |