Dead code removal from BGet++

API modifications for ServerApp to support PortLink messages sent via an area
Added a RAM-based PortLink message reader to handle reading from an area


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9336 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2004-10-14 01:23:00 +00:00
parent c2f63fb50d
commit 8fd1ad6fb0
7 changed files with 387 additions and 147 deletions
-5
View File
@@ -24,7 +24,6 @@
// Description: Server-side counterpart to BPicture
//
//------------------------------------------------------------------------------
#include <AreaLink.h>
#include "TokenHandler.h"
#include "ServerPicture.h"
@@ -42,12 +41,8 @@ ServerPicture::ServerPicture(void)
if(_area!=B_BAD_VALUE && _area!=B_NO_MEMORY && _area!=B_ERROR)
_initialized=true;
arealink=(_initialized)?new AreaLink(_area):NULL;
}
ServerPicture::~ServerPicture(void)
{
if(arealink)
delete arealink;
}