From 50bafbdd68160d00606a4e83d9759c21223c11f8 Mon Sep 17 00:00:00 2001 From: jantuomi Date: Thu, 1 Sep 2016 11:20:59 +0300 Subject: Restructure project --- src/parser.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/parser.h (limited to 'src/parser.h') diff --git a/src/parser.h b/src/parser.h new file mode 100644 index 0000000..cd39732 --- /dev/null +++ b/src/parser.h @@ -0,0 +1,15 @@ +#pragma once +#include +#include "token.h" +#include + +class Parser { + public: + Parser(); + + std::vector parseValues(const std::string&); + std::vector parseCode(const std::string&); + + static void printTokens(const std::vector&); + static void printValues(const std::vector&); +}; -- cgit v1.3