OpenMW
components/compiler/tokenloc.hpp
Go to the documentation of this file.
00001 #ifndef COMPILER_TOKENLOC_H_INCLUDED
00002 #define COMPILER_TOKENLOC_H_INCLUDED
00003 
00004 #include <string>
00005 
00006 namespace Compiler
00007 {
00009 
00010     struct TokenLoc
00011     {
00012         int mColumn;
00013         int mLine;
00014         std::string mLiteral;
00015 
00016         TokenLoc() : mColumn (0), mLine (0), mLiteral ("") {}
00017     };
00018 }
00019 
00020 #endif // TOKENLOC_H_INCLUDED