mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
17 lines
181 B
C++
17 lines
181 B
C++
#pragma once
|
|
class CFiberClient : public acl::fiber
|
|
{
|
|
public:
|
|
CFiberClient(SOCKET sock);
|
|
|
|
private:
|
|
~CFiberClient(void);
|
|
|
|
protected:
|
|
void run(void);
|
|
|
|
private:
|
|
SOCKET m_sock;
|
|
};
|
|
|