EMath++
Classes for mathematical concepts
|
Englobes all the classes and functions of the parser. More...
Classes | |
class | Lexer |
Class that works as a token supplier for the Parser class. More... | |
class | Parser |
Class that wraps a std::string and parses it as a Monomial or as a Polynomial. More... | |
struct | Token |
Struct for representing a token as a type and a value. More... | |
Enumerations | |
enum | TokenType { T_PLUS , T_MINUS , T_NUMBER , T_VARIABLE , T_EXPONENT , T_EOF } |
Enum with all the possible Token types. More... | |
Englobes all the classes and functions of the parser.
The emthp namespace contains two classes: Parser and Lexer. It also contains the TokenType enum and a Token struct.
enum emthp::TokenType |