summaryrefslogtreecommitdiff
path: root/include/logger/WinDbgLogSink.hpp
blob: d073cdc0bcee8359b213df0b3b9ed8ff0b3dba3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __WINDBG_LOGSINK_H
#define __WINDBG_LOGSINK_H

#include "LogSink.hpp"

class WinDbgLogSink : public LogSink
{
	public:
		WinDbgLogSink( const LogLevel level ) : LogSink( level ) { }
		
		DLL_VISIBLE virtual void log( const LogLevel level, const std::string &msg );
};

#endif