// This file is a part of Framsticks GDK library. // Copyright (C) 2002-2006 Szymon Ulatowski. See LICENSE.txt for details. // Refer to http://www.frams.alife.pl/ 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