aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/ErrorContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/ErrorContext.h')
-rw-r--r--parameter/ErrorContext.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/parameter/ErrorContext.h b/parameter/ErrorContext.h
index e13bf43..ae2afe1 100644
--- a/parameter/ErrorContext.h
+++ b/parameter/ErrorContext.h
@@ -31,20 +31,18 @@
#include <string>
-using namespace std;
-
class CErrorContext
{
public:
- CErrorContext(string& strError);
+ CErrorContext(std::string& strError);
// Error
- void setError(const string& strError);
- void appendToError(const string& strAppend);
- const string& getError() const;
+ void setError(const std::string& strError);
+ void appendToError(const std::string& strAppend);
+ const std::string& getError() const;
private:
// Error reference
- string& _strError;
+ std::string& _strError;
};