| 3 | #include <sstream> |
| 4 | |
| 5 | bool MathExp::isOperator(const char c) |
| 6 | { |
| 7 | if(c == *"+" || c == *"-" || c == *"*" || c == *"/" || c == *"(") |
| 8 | return true; |
| 9 | else |
| 10 | return false; |
| 11 | } |
| 12 | |
| 13 | bool MathExp::isRParen(const char c) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected