81,88d80
< public:
<
< /** A type name for the port identifier. */
< typedef int PortId;
<
< /** A symbolic name for the absence of a port id. */
< static const PortId INVALID_PORT_ID = -1;
<
98c90
< * to INVALID_PORT_ID in case this port is not part of a vector.
---
> * to InvalidPortID in case this port is not part of a vector.
100c92
< const PortId id;
---
> const PortID id;
115c107
< Port(const std::string& _name, MemObject& _owner, PortId _id);
---
> Port(const std::string& _name, MemObject& _owner, PortID _id);
128c120
< PortId getId() const { return id; }
---
> PortID getId() const { return id; }
170c162
< PortId id = INVALID_PORT_ID);
---
> PortID id = InvalidPortID);
308c300
< PortId id = INVALID_PORT_ID);
---
> PortID id = InvalidPortID);