home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / msdev / bin / ide / mfcapwz.dll / TEMPLATE / DIALOG.H < prev    next >
C/C++ Source or Header  |  1996-07-12  |  1KB  |  43 lines

  1. // $$dlg_hfile$$.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // $$DLG_CLASS$$ dialog
  6.  
  7. class $$DLG_CLASS$$ : public $$DLG_BASE_CLASS$$
  8. {
  9. // Construction
  10. public:
  11.     $$DLG_CLASS$$(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA($$DLG_CLASS$$)
  15.     enum { IDD = IDD_$$SAFE_ROOT$$_DIALOG };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL($$DLG_CLASS$$)
  21.     protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. protected:
  27.     HICON m_hIcon;
  28.  
  29.     // Generated message map functions
  30.     //{{AFX_MSG($$DLG_CLASS$$)
  31.     virtual BOOL OnInitDialog();
  32. $$IF(ABOUT)    
  33.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  34. $$ENDIF
  35. $$IF(HELP)
  36.     afx_msg void OnDestroy();
  37. $$ENDIF
  38.     afx_msg void OnPaint();
  39.     afx_msg HCURSOR OnQueryDragIcon();
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.