Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. class CThrdPanel : public CWinThread, public CBaseFn
  2. {
  3. DECLARE_DYNCREATE(CThrdPanel)
  4.  
  5. public:
  6. CThrdPanel(); // protected constructor used by dynamic creation
  7. CThrdPanel(IAddLayoutDlg_Callback *_pCallBack);
  8. virtual ~CThrdPanel();
  9.  
  10. long ShowPanel(long _lType);
  11. long ClearPanel();
  12.  
  13. private:
  14. virtual BOOL InitInstance();
  15. virtual int ExitInstance();
  16.  
  17. CAddLayoutDlg_Main *m_pAddLayoutMain;
  18. IAddLayoutDlg_Callback *m_piBaseCallback;
  19.  
  20. protected:
  21. DECLARE_MESSAGE_MAP()
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement