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