OpenMW
|
00001 00002 #ifndef COMPILER_NULLERRORHANDLER_H_INCLUDED 00003 #define COMPILER_NULLERRORHANDLER_H_INCLUDED 00004 00005 #include "errorhandler.hpp" 00006 00007 namespace Compiler 00008 { 00010 00011 class NullErrorHandler : public ErrorHandler 00012 { 00013 virtual void report (const std::string& message, const TokenLoc& loc, Type type); 00015 00016 virtual void report (const std::string& message, Type type); 00018 }; 00019 } 00020 00021 #endif