ThreadDerived.htp
上传用户:yanganfa
上传日期:2007-01-01
资源大小:195k
文件大小:1k
源码类别:

进程与线程

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////////////
  2. // WORKER THREAD DERIVED CLASS - produced by Worker Thread Class Generator Rel 1.0
  3. // <$CLASS_FILETITLE$>.h: Interface for the <$CLASS$> Class.
  4. /////////////////////////////////////////////////////////////////////////////////////
  5. #if !defined(AFX_<$CLASS_IDENTITY$>_H__A4C9C0B8_CD6D_11D2_BB7E_<$TIME_IDENTIFICATOR$>__INCLUDED_)
  6. #define AFX_<$CLASS_IDENTITY$>_H__A4C9C0B8_CD6D_11D2_BB7E_<$TIME_IDENTIFICATOR$>__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #include "<$BASE_CLASS_FILETITLE$>.h"
  11. class <$CLASS$> : public <$BASE_CLASS$>  
  12. {
  13. public:
  14. DECLARE_DYNAMIC(<$CLASS$>)
  15. // Construction & Destruction
  16. <$CLASS$>(void* pOwnerObject = NULL, LPARAM lParam = 0L);
  17. virtual ~<$CLASS$>();
  18. // Operations & Overridables
  19. #ifdef _DEBUG
  20. virtual void AssertValid() const;
  21. virtual void Dump(CDumpContext& dc) const;
  22. #endif
  23. protected:
  24. // Overridables
  25. virtual void OnKill();<$DECLARE_THREAD_HANDLER$>
  26. };
  27. //{{AFX_INSERT_LOCATION}}
  28. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  29. #endif // !defined(AFX_<$CLASS_IDENTITY$>_H__A4C9C0B8_CD6D_11D2_BB7E_<$TIME_IDENTIFICATOR$>__INCLUDED_)