00001 #ifndef ExprTreeIRInterface_h 00002 #define ExprTreeIRInterface_h 00003 00004 #include "OpBasicInterface.hpp" 00005 #include "ConstValBasicInterface.hpp" 00006 00007 namespace OA { 00008 00009 class ExprTreeIRInterface { 00010 public: 00011 OA_ptr<OpBasicInterface> getOpBasic(OpHandle hOp); 00012 00013 OA_ptr<ConstValBasicInterface> getConstValBasic(ConstValHandle hConstVal); 00014 }; 00015 00016 } 00017 00018 #endif 00019
1.7.1