mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-12 22:27:41 +02:00
Moved Screen class into synergy namespace
This commit is contained in:
parent
a4843c4947
commit
67377109f3
18 changed files with 68 additions and 55 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue