summaryrefslogtreecommitdiff
path: root/Source/modules/asura-base/Threads/Threadable.h
blob: fce73501eb850b787d20e4bcedf5c313df2f9094 (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(Threads)

ASURA_ABSTRACT class Threadable
{
public: 

	Threadable() {};
	virtual ~Threadable() {};

	virtual int Process() = 0;

};

namespace_end
namespace_end

#endif