mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +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);
|
|
};
|
|
|