00001 #ifndef INOUTPORT_H_INCLUDED_
00002 #define INOUTPORT_H_INCLUDED_
00003
00004 #include <vector>
00005 #include "rose.h"
00006
00007 #include "port.h"
00008
00009 namespace risc {
00010
00011 class InOutPort: public Port {
00012
00013 public:
00014
00018 explicit InOutPort(SgVariableDefinition *ast_node);
00019
00020 private:
00024 InOutPort(const InOutPort &iop);
00025 };
00026
00027 typedef std::vector<InOutPort*> InOutPortVector;
00028 typedef std::vector<InOutPort*>::iterator InOutPortVectorIter;
00029 typedef std::vector<InOutPort*>::const_iterator InOutPortVectorConstIter;
00030
00031 };
00032
00033 #endif
00034
00035