// This file is a part of the Framsticks GDK library. // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. // Refer to http://www.framsticks.com/ for further information. #ifndef _STDOUTERRORHANDLER_H_ #define _STDOUTERRORHANDLER_H_ #include "errmanager.h" class StdoutErrorHandler: public ErrorHandlerBase { public: StdoutErrorHandler(int opts=DontBlock):ErrorHandlerBase(opts) {} void handle(const char *o,const char *m,const char *bl,int w); }; #endif