2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-16 01:43:04 +00:00
Files
OpenAssetTools/src/Parser/Parsing/TokenPos.h

16 lines
269 B
C++

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