#pragma once #include #include "token.hpp" #include #include namespace hex::lang { class Lexer { public: Lexer(); std::pair> lex(const std::string& code); const std::pair& getError() { return this->m_error; } private: std::pair m_error; }; }