Forgotten header checkin. :P

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4954 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm 2003-10-05 22:10:35 +00:00
parent 4087744eef
commit 280bc131fd

View File

@ -28,6 +28,7 @@
#define SERVERCURSOR_H_
#include <Point.h>
#include <String.h>
#include "ServerBitmap.h"
class ServerApp;
@ -53,7 +54,7 @@ public:
//! Returns the cursor's hot spot
BPoint GetHotSpot(void) { return _hotspot; }
void SetHotSpot(BPoint pt);
const char *GetAppSignature(void) { return _app_signature; }
const char *GetAppSignature(void) { return _app_signature.String(); }
void SetAppSignature(const char *signature);
//! Returns the cursor's ID
@ -62,7 +63,7 @@ private:
friend class CursorManager;
BPoint _hotspot;
char *_app_signature;
BString _app_signature;
int32 _token;
};