Added methods to get the sender and receiver ports

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4929 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm 2003-10-02 23:07:26 +00:00
parent 92a8026e02
commit dba1a55db7
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@ public:
virtual ~BSession();
void SetSendPort( port_id port );
void SetRecvPort( port_id port );
port_id GetSendPort(void) const { return fSendPort; }
port_id GetRecvPort(void) const { return fReceivePort; }
bool DropInputBuffer();
char* ReadString();