Show TRedShedThread.h syntax highlighted
/****************************************************************************************
TRedShedThread.h $Revision: 1.2 $
<http://rentzsch.com/redshedthreads>
Copyright © 1998-2002 Red Shed Software. All rights reserved.
by Jonathan 'Wolf' Rentzsch (jon at redshed dot net)
************************************************************************************/
#ifndef _TRedShedThread_
#define _TRedShedThread_
#include "RedShedThreads.h"
class TRedShedThread : public RedShedThread {
public:
explicit
TRedShedThread(
RedShedThreadContextID contextID = kRedShedThreadContextStd,
UInt32 stackSize = 0 );
virtual
~TRedShedThread();
protected:
virtual
void
Entry();
private:
static
void
Entry_(
RedShedThread *thread );
static
void
Disposer_(
RedShedThread *thread );
};
#endif // _TRedShedThread_
See more files for this project here