#include <thread.h>
Inheritance diagram for PThreadObj< ObjType >:

Public Types | |
| typedef void(ObjType::*) | ObjTypeFn () |
Public Member Functions | |
| PThreadObj (ObjType &obj, ObjTypeFn function, bool autoDel=false, const char *name=NULL, PThread::Priority priority=PThread::NormalPriority) | |
| void | Main () |
| User override function for the main execution routine of the thread. | |
Protected Attributes | |
| ObjType & | m_object |
| ObjTypeFn | m_function |
| typedef void(ObjType::*) PThreadObj< ObjType >::ObjTypeFn() |
| PThreadObj< ObjType >::PThreadObj | ( | ObjType & | obj, | |
| ObjTypeFn | function, | |||
| bool | autoDel = false, |
|||
| const char * | name = NULL, |
|||
| PThread::Priority | priority = PThread::NormalPriority | |||
| ) | [inline] |
| void PThreadObj< ObjType >::Main | ( | ) | [inline, virtual] |
User override function for the main execution routine of the thread.
A descendent class must provide the code that will be executed in the thread within this function.
Note that the correct way for a thread to terminate is to return from this function.
Implements PThread.
ObjTypeFn PThreadObj< ObjType >::m_function [protected] |
ObjType& PThreadObj< ObjType >::m_object [protected] |
1.4.7