2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-21 20:05:34 +00:00
2023-11-19 21:07:21 +00:00

18 lines
303 B
C++

#pragma once
#include <functional>
#include <string>
class TokenPos
{
static const std::string EMPTY_FILENAME;
public:
std::reference_wrapper<const std::string> m_filename;
int m_line;
int m_column;
TokenPos();
TokenPos(const std::string& filename, int line, int column);
};