USGS

Isis 3.0 Object Programmers' Reference

Home

CubeInfixToPostfix.h
Go to the documentation of this file.
1 
23 #ifndef CUBEINFIXTOPOSTFIX_H_
24 #define CUBEINFIXTOPOSTFIX_H_
25 
26 #include "InfixToPostfix.h"
27 #include <stack>
28 #include <iostream>
29 #include <QVector>
30 
31 namespace Isis {
32 
53  public:
55  ~CubeInfixToPostfix() {};
56 
57  protected:
58  bool isKnownSymbol(QString representation);
59  InfixOperator *findOperator(QString representation);
60 
61  private:
62  void initialize();
63  };
64 };
65 
66 #endif