CAS/Interpreter.hpp
Lauchmelder b909747dca
Add files via upload
Added better Ans support
Added Pi and e
Improved decimal numbers
Added help page, accesible via <help>
2018-09-30 00:05:44 +02:00

29 lines
613 B
C++

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