DlgBase.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #if !defined(AFX_DLGBASE_H__47D68D83_92BA_4E9D_91E4_C56E2B779907__INCLUDED_)
  2. #define AFX_DLGBASE_H__47D68D83_92BA_4E9D_91E4_C56E2B779907__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgBase.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgBase dialog
  10. class CDlgBase : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CDlgBase(UINT nID,CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CDlgBase)
  17. // NOTE: the ClassWizard will add data members here
  18. //}}AFX_DATA
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CDlgBase)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. protected:
  27. CBitmap m_bmp;
  28. // Generated message map functions
  29. //{{AFX_MSG(CDlgBase)
  30. virtual BOOL OnInitDialog();
  31. afx_msg void OnPaint();
  32. afx_msg LRESULT OnNcHitTest(CPoint point);
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  38. #endif // !defined(AFX_DLGBASE_H__47D68D83_92BA_4E9D_91E4_C56E2B779907__INCLUDED_)