
Added better Ans support Added Pi and e Improved decimal numbers Added help page, accesible via <help>
29 lines
613 B
C++
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;
|
|
};
|
|
|