Moved Screen class into synergy namespace

This commit is contained in:
Xinyu Hou 2014-11-11 17:45:24 +00:00
parent a4843c4947
commit 67377109f3
18 changed files with 68 additions and 55 deletions

View file

@ -36,7 +36,7 @@ class BaseClientProxy;
class EventQueueTimer;
class PrimaryClient;
class InputFilter;
class Screen;
namespace synergy { class Screen; }
class IEventQueue;
class Thread;
@ -104,7 +104,8 @@ public:
client (local screen) \p primaryClient. The client retains
ownership of \p primaryClient.
*/
Server(Config& config, PrimaryClient* primaryClient, Screen* screen, IEventQueue* events, bool enableDragDrop);
Server(Config& config, PrimaryClient* primaryClient,
synergy::Screen* screen, IEventQueue* events, bool enableDragDrop);
~Server();
#ifdef TEST_ENV
@ -457,7 +458,7 @@ private:
bool m_lockedToScreen;
// server screen
Screen* m_screen;
synergy::Screen* m_screen;
IEventQueue* m_events;