From 1ba5c17a68f13633d6a20785c722b22032ba45c4 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 31 Aug 2016 19:50:57 +0000 Subject: Add runtime and value classes --- runtime.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 runtime.h (limited to 'runtime.h') diff --git a/runtime.h b/runtime.h new file mode 100644 index 0000000..f1b050d --- /dev/null +++ b/runtime.h @@ -0,0 +1,11 @@ +#pragma once +#include "value.h" +#include + +class Runtime { + private: + std::vector m_values; + public: + Runtime(); + void run(std::vector& tokens); +}; -- cgit v1.3