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