#ifndef THREADS_H
#define THREADS_H


#include "Namespace.h"
BEGIN_NAMESPACE


class Thread
{
public:
	Thread() {}
	virtual ~Thread() {}

	void Start();
	
	virtual int Run() = 0;
};


// TODO: ThreadPools


END_NAMESPACE


#endif // THREADS_H
