Forgot to add the ID token. Doh!

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2535 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm 2003-01-23 01:20:28 +00:00
parent 579d027203
commit a534bc89a5
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,7 @@
#include "ServerBitmap.h" #include "ServerBitmap.h"
class ServerApp; class ServerApp;
class CursorManager;
/*! /*!
\class ServerCursor ServerCursor.h \class ServerCursor ServerCursor.h
@ -55,8 +56,11 @@ public:
const char *GetAppSignature(void) { return _app_signature; } const char *GetAppSignature(void) { return _app_signature; }
private: private:
friend ServerApp; friend ServerApp;
friend CursorManager;
BPoint _hotspot; BPoint _hotspot;
char *_app_signature; char *_app_signature;
int32 token;
}; };
#endif #endif