28 lines
449 B
C++
28 lines
449 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
|
|
#ifndef __DRAIN_ALGO_AUTO_LOG_IN_OUT_H__
|
|
#define __DRAIN_ALGO_AUTO_LOG_IN_OUT_H__
|
|
|
|
#include <string>
|
|
#include "debug.h"
|
|
|
|
namespace drain{
|
|
class AutoLogInOut {
|
|
private:
|
|
std::string m_value;
|
|
public:
|
|
AutoLogInOut(const std::string& _value);
|
|
~AutoLogInOut();
|
|
};
|
|
}
|
|
|
|
#include "debugRemove.h"
|
|
|
|
#endif
|
|
|