aboutsummaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index c29d8f1..eab8354 100644
--- a/parser.h
+++ b/parser.h
@@ -1,7 +1,13 @@
#pragma once
#include <string>
+#include "token.h"
+#include <vector>
class Parser {
+ private:
+ std::vector<Token> m_tokens;
public:
Parser(std::string&);
+ std::vector<Token>& getTokens();
+ void printTokens();
};