89a90,91
> Port();
>
95a98
> * Will not necessarily be set.
97c100
< Port(const std::string &_name, MemObject *_owner, Port *_peer = NULL);
---
> Port(const std::string &_name, MemObject *_owner = NULL);
110a114,116
> void setName(const std::string &name)
> { portName = name; }
>
116a123,125
> /** Function to set the owner of this port. */
> void setOwner(MemObject *_owner) { owner = _owner; }
>
120,122c129,131
< /** Notify my peer port that I'm disconnecting (by calling its
< * disconnect() method) so it can clean up. */
< void disconnectFromPeer();
---
> /** Inform the peer port to delete itself and notify it's owner about it's
> * demise. */
> void removeConn();
248,252d256
<
< /** Receive notification that my peer is disconnecting and clean
< * up (potentially deleting myself in the process). Should be
< * called only from peer's disconnectFromPeer(). */
< void disconnect();