 |
Prototype:
private: virtual unsigned long Run() = 0;
Arguments:
No arguments (void).
Return value:
Returns the exit code.
Remarks:
Every derived class should implement this member function.
Examples:
class CSPMyThread : public CSPThread { // Declare your data here. }; CSPMyThread::Run() { // ... write your thread code here
return 0; // exit code }
See also:
member function GetUserParam()
|