// This file is a part of Framsticks SDK. http://www.framsticks.com/ // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. // See LICENSE.txt for details. #ifndef _STDOUT_LOGGER_H_ #define _STDOUT_LOGGER_H_ #include "loggers.h" #include class LoggerToStdout : public LoggerBase { VirtFILE *file; public: LoggerToStdout(int opts = 0, VirtFILE *_file = NULL) :LoggerBase(opts), file(_file) {} void handle(const char *o, const char *m, int w, const char *bl); }; #endif