blob: 19eb1133e2d8a46b7804e42bec17ce280eea1c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __ASURA_THRAD_TASK_H__
#define __ASURA_THRAD_TASK_H__
#include <asura-lib-utils/type.h>
namespace AsuraEngine
{
namespace Threading
{
///
/// ϣһ̴̳߳TaskдExecute
///
ASURA_ABSTRACT class ThreadTask
{
public:
virtual bool Execute() = 0;
};
}
}
#endif
|