mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 12:59:39 +08:00
12 lines
133 B
C++
12 lines
133 B
C++
#pragma once
|
|
class CFiberSleep : public acl::fiber
|
|
{
|
|
public:
|
|
CFiberSleep(void);
|
|
~CFiberSleep(void);
|
|
|
|
private:
|
|
void run(void);
|
|
};
|
|
|