blob: 08f807df0e592752468133a7b484bc97d68f07b5 (
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_THREADABLE_H__
#define __ASURA_THREADABLE_H__
#include "../type.h"
namespace AsuraEngine
{
namespace Threading
{
ASURA_ABSTRACT class Threadable
{
public:
Threadable() {};
virtual ~Threadable() {};
virtual int Process() = 0;
};
}
}
#endif
|