OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
nullerrorhandler.hpp
Go to the documentation of this file.
1 #ifndef COMPILER_NULLERRORHANDLER_H_INCLUDED
2 #define COMPILER_NULLERRORHANDLER_H_INCLUDED
3 
4 #include "errorhandler.hpp"
5 
6 namespace Compiler
7 {
9 
11  {
12  virtual void report (const std::string& message, const TokenLoc& loc, Type type);
14 
15  virtual void report (const std::string& message, Type type);
17  };
18 }
19 
20 #endif
Type
Definition: errorhandler.hpp:23
void message(CodeContainer &code, Literals &literals, const std::string &message, int buttons)
Definition: generator.cpp:537
Location of a token in a source file.
Definition: tokenloc.hpp:10
Error handler implementation: Ignore all error messages.
Definition: nullerrorhandler.hpp:10
Error handling.
Definition: errorhandler.hpp:14
virtual void report(const std::string &message, const TokenLoc &loc, Type type)
Report error to the user.
Definition: nullerrorhandler.cpp:3