mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 03:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef COMPILER_TOKENLOC_H_INCLUDED
 | 
						|
#define COMPILER_TOKENLOC_H_INCLUDED
 | 
						|
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace Compiler
 | 
						|
{
 | 
						|
    /// \brief Location of a token in a source file
 | 
						|
 | 
						|
    struct TokenLoc
 | 
						|
    {
 | 
						|
        int mColumn;
 | 
						|
        int mLine;
 | 
						|
        std::string mLiteral;
 | 
						|
 | 
						|
        TokenLoc() : mColumn (0), mLine (0), mLiteral ("") {}
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif // TOKENLOC_H_INCLUDED
 |