18 lines
438 B
C++
18 lines
438 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#include "AutoLogInOut.h"
|
|
#include "debug.h"
|
|
|
|
drain::AutoLogInOut::AutoLogInOut(const std::string& _value) :
|
|
m_value(_value) {
|
|
DRAIN_VERBOSE(" '" << m_value << "' [START]");
|
|
}
|
|
|
|
drain::AutoLogInOut::~AutoLogInOut() {
|
|
DRAIN_VERBOSE(" '" << m_value << "' [STOP]");
|
|
}
|