blob: 66973c5ee3d6253887da696692eb6c4650602f86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __ASURA_THREADABLE_H__
#define __ASURA_THREADABLE_H__
#include "../type.h"
namespace_begin(AsuraEngine)
namespace_begin(Threading)
ASURA_ABSTRACT class Threadable
{
public:
Threadable() {};
virtual ~Threadable() {};
virtual int Process() = 0;
};
namespace_end
namespace_end
#endif
|