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