aboutsummaryrefslogtreecommitdiffstats
path: root/src/runtime.h
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-09-01 11:20:59 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-09-01 11:20:59 +0300
commit50bafbdd68160d00606a4e83d9759c21223c11f8 (patch)
tree66c58cfb012dc0b7d222a03e8c55507b75e9af1f /src/runtime.h
parentbe011366f249b8ebed3905030ce3b7021597ee34 (diff)
Restructure project
Diffstat (limited to 'src/runtime.h')
-rw-r--r--src/runtime.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/runtime.h b/src/runtime.h
new file mode 100644
index 0000000..3572391
--- /dev/null
+++ b/src/runtime.h
@@ -0,0 +1,14 @@
+#pragma once
+#include <vector>
+#include <stack>
+#include "token.h"
+
+class Runtime {
+ private:
+ std::stack<int> m_values;
+ bool runCommand(const Token& token);
+
+ public:
+ Runtime();
+ void run(std::vector<Token>& tokens);
+};