mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 17:00:52 +08:00
13 lines
147 B
C
13 lines
147 B
C
|
#pragma once
|
||
|
class CFiberSleep : public acl::fiber
|
||
|
{
|
||
|
public:
|
||
|
CFiberSleep(void);
|
||
|
|
||
|
private:
|
||
|
// @override
|
||
|
void run(void);
|
||
|
~CFiberSleep(void);
|
||
|
};
|
||
|
|