audio-drain/audio/drain/AutoLogInOut.h

30 lines
490 B
C++

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