#include <vdkthread.h>
It is possible to use a VDKThread in two way:
class NewClass : public VDKThread { protected: void Execute () { // my code } public: NewClass (); ~NewsClass (); } //... NewClass thread; thread.Start();
|
Exit from the thread |
|
Return the thread ID. |
|
Start the thread. |
|
Stops executing thread (command from other threads). |
|
Wait until the thread is terminated (it is used from other threads). |
|
Store thread status. |