#pragma once #include #include #include #include "Token.hpp" class Interpreter { public: static double interpret(std::string _string); private: static bool scanForErrors(); static bool getResult(); static bool createSymbolList(std::vector& symbols); static bool createOrderedTokenList(std::vector symbols, std::vector& tokens); static std::string string; static std::string numbers; static std::string operators; static std::map operation_order; static double result; static bool justNumber; };