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