mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-10 13:57:44 +08:00
dropped "c" prefix from class names
This commit is contained in:
@@ -21,16 +21,16 @@
|
||||
#include "server/ClientProxy1_2.h"
|
||||
|
||||
//! Proxy for client implementing protocol version 1.3
|
||||
class CClientProxy1_3 : public CClientProxy1_2 {
|
||||
class ClientProxy1_3 : public ClientProxy1_2 {
|
||||
public:
|
||||
CClientProxy1_3(const CString& name, synergy::IStream* adoptedStream, IEventQueue* events);
|
||||
~CClientProxy1_3();
|
||||
ClientProxy1_3(const String& name, synergy::IStream* adoptedStream, IEventQueue* events);
|
||||
~ClientProxy1_3();
|
||||
|
||||
// IClient overrides
|
||||
virtual void mouseWheel(SInt32 xDelta, SInt32 yDelta);
|
||||
|
||||
protected:
|
||||
// CClientProxy overrides
|
||||
// ClientProxy overrides
|
||||
virtual bool parseMessage(const UInt8* code);
|
||||
virtual void resetHeartbeatRate();
|
||||
virtual void setHeartbeatRate(double rate, double alarm);
|
||||
@@ -40,10 +40,10 @@ protected:
|
||||
virtual void keepAlive();
|
||||
|
||||
private:
|
||||
void handleKeepAlive(const CEvent&, void*);
|
||||
void handleKeepAlive(const Event&, void*);
|
||||
|
||||
private:
|
||||
double m_keepAliveRate;
|
||||
CEventQueueTimer* m_keepAliveTimer;
|
||||
EventQueueTimer* m_keepAliveTimer;
|
||||
IEventQueue* m_events;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user