Refactor main.cpp functions into separate class

This commit is contained in:
2020-05-22 20:33:17 +02:00
parent 057a9411e6
commit e7a5cfa327
13 changed files with 252 additions and 185 deletions

View File

@@ -3,6 +3,7 @@
#include <token/registertype.hpp>
#include <token/tokentype.hpp>
#include <variant>
#include <vector>
namespace Token
{
@@ -46,4 +47,6 @@ namespace Token
void DebugPrint() const;
};
void PrintTokens(std::vector<Token> const & tokens);
}