34 lines
597 B
C++
34 lines
597 B
C++
#ifndef MISC_I_THREAD_OBJECT_H
|
|
#define MISC_I_THREAD_OBJECT_H
|
|
|
|
|
|
|
|
namespace Oyster
|
|
{
|
|
namespace Thread
|
|
{
|
|
/**
|
|
* Inherit this class to get threading compatibility.
|
|
*/
|
|
class IThreadObject
|
|
{
|
|
public:
|
|
/**
|
|
* Override this to get notified when the thread is started.
|
|
*/
|
|
virtual void ThreadEntry() { }
|
|
/**
|
|
* Override this to get notified when the thread is about to exit.
|
|
*/
|
|
virtual void ThreadExit() { }
|
|
/**
|
|
* This function is required to get threading working.
|
|
*/
|
|
virtual bool DoWork ( ) = 0;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // !MISC_I_WORKER_THREAD_H
|
|
|