Added global cursormanager object

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2544 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm 2003-01-24 14:00:48 +00:00
parent 556632b760
commit 134b30df97
2 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,9 @@
#include "ServerCursor.h"
#include <Errors.h>
//! The global cursor manager object. Allocated and freed by AppServer class
CursorManager *cursormanager;
//! Initializes the CursorManager
CursorManager::CursorManager(void)
{

View File

@ -94,4 +94,6 @@ private:
cursor_which _current_which;
};
extern CursorManager *cursormanager;
#endif