bff387f17a
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2979 a95241bf-73f2-0310-859d-f6bbb57e9c96
28 lines
561 B
C++
28 lines
561 B
C++
#include <AreaLink.h>
|
|
#include "TokenHandler.h"
|
|
#include "ServerPicture.h"
|
|
|
|
TokenHandler picture_token_handler;
|
|
|
|
ServerPicture::ServerPicture(void)
|
|
{
|
|
_token=picture_token_handler.GetToken();
|
|
|
|
_initialized=false;
|
|
|
|
int8 *ptr;
|
|
_area=create_area("ServerPicture",(void**)&ptr,B_ANY_ADDRESS,B_PAGE_SIZE,
|
|
B_NO_LOCK,B_READ_AREA | B_WRITE_AREA);
|
|
|
|
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;
|
|
}
|