summaryrefslogtreecommitdiffstats
path: root/parameter/AutoLog.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/AutoLog.h')
-rw-r--r--parameter/AutoLog.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/parameter/AutoLog.h b/parameter/AutoLog.h
index 5e63402..0454514 100644
--- a/parameter/AutoLog.h
+++ b/parameter/AutoLog.h
@@ -31,10 +31,12 @@
#include "Element.h"
+#include <string>
+
class CAutoLog
{
public:
- CAutoLog(const CElement* pElement, const string& strContext, bool bLogOn = true);
+ CAutoLog(const CElement* pElement, const std::string& strContext, bool bLogOn = true);
~CAutoLog();
private:
@@ -43,7 +45,7 @@ private:
// Logger element
const CElement* _pElement;
// Context
- string _strContext;
+ std::string _strContext;
// Log on
bool _bLogOn;
};