InlineInfixToPostfix()
Constructs an InlineInfixToPostfix object.
Definition: InlineInfixToPostfix.cpp:24
virtual InfixOperator * findOperator(QString representation)
This method will return a pointer to the operator represented by 'representation.
Definition: InfixToPostfix.cpp:347
virtual ~InlineInfixToPostfix()
Destroys the InlineInfixToPostfix object.
Definition: InlineInfixToPostfix.cpp:32
virtual bool isKnownSymbol(QString representation)
This method attempts to verify that the given argument is recognized as a valid function,...
Definition: InlineInfixToPostfix.cpp:44
A parser for converting equation strings to postfix.
Definition: InlineInfixToPostfix.h:34
QList< InfixOperator * > p_operators
Definition: InfixToPostfix.h:59
Converter for math equations.
Definition: InfixToPostfix.h:46
double toDouble(const QString &string)
Global function to convert from a string to a double.
Definition: IString.cpp:149
virtual bool isKnownSymbol(QString representation)
This method will return true if it believes the argument represents a valid function or operator.
Definition: InfixToPostfix.cpp:253
virtual InfixOperator * findOperator(QString element)
This method will first search the recognized list of operators and functions for the given token.
Definition: InlineInfixToPostfix.cpp:81