diff options
Diffstat (limited to 'parameter/AutoLog.h')
-rw-r--r-- | parameter/AutoLog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/parameter/AutoLog.h b/parameter/AutoLog.h index c6a2a01..818b3c5 100644 --- a/parameter/AutoLog.h +++ b/parameter/AutoLog.h @@ -29,7 +29,7 @@ class CAutoLog { public: - CAutoLog(const CElement* pElement, const string& strContext); + CAutoLog(const CElement* pElement, const string& strContext, bool bLogOn = true); ~CAutoLog(); private: @@ -39,5 +39,7 @@ private: const CElement* _pElement; // Context string _strContext; + // Log on + bool _bLogOn; }; |