A parser for converting equation strings to postfix. 
Definition: InlineInfixToPostfix.h:51
 
virtual InfixOperator * findOperator(QString element)
This method will first search the recognized list of operators and functions for the given token...
Definition: InlineInfixToPostfix.cpp:98
 
virtual ~InlineInfixToPostfix()
Destroys the InlineInfixToPostfix object. 
Definition: InlineInfixToPostfix.cpp:49
 
virtual bool isKnownSymbol(QString representation)
This method attempts to verify that the given argument is recognized as a valid function, operator, scalar, or variable. 
Definition: InlineInfixToPostfix.cpp:61
 
InlineInfixToPostfix()
Constructs an InlineInfixToPostfix object. 
Definition: InlineInfixToPostfix.cpp:41
 
Converter for math equations. 
Definition: InfixToPostfix.h:61