mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-25 20:38:46 +02:00
fixed code style
This commit is contained in:
parent
f973d1498d
commit
be2b87fd39
4 changed files with 14 additions and 10 deletions
|
@ -106,5 +106,6 @@ private:
|
||||||
|
|
||||||
SocketJobs m_socketJobs;
|
SocketJobs m_socketJobs;
|
||||||
SocketJobMap m_socketJobMap;
|
SocketJobMap m_socketJobMap;
|
||||||
ISocketMultiplexerJob* m_cursorMark;
|
ISocketMultiplexerJob*
|
||||||
|
m_cursorMark;
|
||||||
};
|
};
|
||||||
|
|
|
@ -41,7 +41,8 @@ public:
|
||||||
virtual void* getEventTarget() const;
|
virtual void* getEventTarget() const;
|
||||||
|
|
||||||
// IListenSocket overrides
|
// IListenSocket overrides
|
||||||
virtual IDataSocket* accept();
|
virtual IDataSocket*
|
||||||
|
accept();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ISocketMultiplexerJob*
|
ISocketMultiplexerJob*
|
||||||
|
|
|
@ -30,8 +30,10 @@ public:
|
||||||
virtual ~TCPSocketFactory();
|
virtual ~TCPSocketFactory();
|
||||||
|
|
||||||
// ISocketFactory overrides
|
// ISocketFactory overrides
|
||||||
virtual IDataSocket* create() const;
|
virtual IDataSocket*
|
||||||
virtual IListenSocket* createListen() const;
|
create() const;
|
||||||
|
virtual IListenSocket*
|
||||||
|
createListen() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
IEventQueue* m_events;
|
IEventQueue* m_events;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue