00001 00032 #ifndef LL_LLERRORTHREAD_H 00033 #define LL_LLERRORTHREAD_H 00034 00035 #include "llthread.h" 00036 00037 class LLErrorThread : public LLThread 00038 { 00039 public: 00040 LLErrorThread(); 00041 ~LLErrorThread(); 00042 00043 /*virtual*/ void run(void); 00044 void setUserData(void *user_data); 00045 void *getUserData() const; 00046 00047 protected: 00048 void* mUserDatap; // User data associated with this thread 00049 }; 00050 00051 #endif // LL_LLERRORTHREAD_H