From d9526499d6ab53b7d13d1434f748f6f2161c2e0a Mon Sep 17 00:00:00 2001 From: Sebastien Gonzalve Date: Thu, 20 Feb 2014 22:28:03 +0100 Subject: Remove using std::XXX from headers This is a bad practice to have using in headers because it pollutes the namespace of any user of that header. --- parameter/PathNavigator.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'parameter/PathNavigator.h') diff --git a/parameter/PathNavigator.h b/parameter/PathNavigator.h index 8a09cb2..3db709a 100644 --- a/parameter/PathNavigator.h +++ b/parameter/PathNavigator.h @@ -33,30 +33,28 @@ #include #include -using namespace std; - class CPathNavigator { public: - CPathNavigator(const string& strPath); + CPathNavigator(const std::string& strPath); // Path validity bool isPathValid() const; // Navigate through - bool navigateThrough(const string& strItemName, string& strError); + bool navigateThrough(const std::string& strItemName, std::string& strError); // Nagivate - string* next(); + std::string* next(); // Current path - string getCurrentPath() const; + std::string getCurrentPath() const; private: - void init(const string& strPath); - static bool checkPathFormat(const string& strUpl); + void init(const std::string& strPath); + static bool checkPathFormat(const std::string& strUpl); bool _bValid; - vector _astrItems; + std::vector _astrItems; uint32_t _uiCurrentIndex; }; -- cgit v1.1