#include <thread.h>
Public Types | |
| typedef void(ObjType::* | ObjTypeFn )(Arg1Type, Arg2Type) |
Public Member Functions | |
| PThreadObj2Arg (ObjType &obj, Arg1Type arg1, Arg2Type arg2, ObjTypeFn function, bool autoDelete=false) | |
| PThreadObj2Arg (const char *file, int line, ObjType &obj, Arg1Type arg1, Arg2Type arg2, ObjTypeFn function, bool autoDelete=false) | |
| void | Main () |
Protected Attributes | |
| ObjType & | m_object |
| ObjTypeFn | m_function |
| Arg1Type | m_arg1 |
| Arg1Type | m_arg2 |
| typedef void(ObjType::* PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::ObjTypeFn)(Arg1Type, Arg2Type) |
| PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::PThreadObj2Arg | ( | ObjType & | obj, | |
| Arg1Type | arg1, | |||
| Arg2Type | arg2, | |||
| ObjTypeFn | function, | |||
| bool | autoDelete = false | |||
| ) | [inline] |
References PThread::Resume().
| PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::PThreadObj2Arg | ( | const char * | file, | |
| int | line, | |||
| ObjType & | obj, | |||
| Arg1Type | arg1, | |||
| Arg2Type | arg2, | |||
| ObjTypeFn | function, | |||
| bool | autoDelete = false | |||
| ) | [inline] |
References PThread::Resume().
| void PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::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.
References PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_arg1, PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_arg2, PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_function, and PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_object.
Arg1Type PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_arg1 [protected] |
Referenced by PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::Main().
Arg1Type PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_arg2 [protected] |
Referenced by PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::Main().
ObjTypeFn PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_function [protected] |
Referenced by PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::Main().
ObjType& PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::m_object [protected] |
Referenced by PThreadObj2Arg< ObjType, Arg1Type, Arg2Type >::Main().
1.6.3