Darc Library
2012.11
|
Wrapper class for windows threads. More...
#include <dc_thread.h>
Public Member Functions | |
DC_Thread () | |
virtual DCR | start () |
Starts the implemented run() method in a new thread. | |
virtual DCR | synchronize () |
Blocks until run() has finished. | |
Protected Member Functions | |
virtual void | run (void *_pVoid)=0 |
This method needs to be implemented by all sub class. |
Wrapper class for windows threads.
darc::DC_Thread::DC_Thread | ( | ) | [inline] |
virtual void darc::DC_Thread::run | ( | void * | _pVoid | ) | [protected, pure virtual] |
This method needs to be implemented by all sub class.
DCR darc::DC_Thread::start | ( | ) | [virtual] |
Starts the implemented run() method in a new thread.
Implements darc::DC_IThread.
virtual DCR darc::DC_Thread::synchronize | ( | ) | [inline, virtual] |
Blocks until run() has finished.
Implements darc::DC_IThread.