home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / msdev / bin / mfcclswz.dll / SRCDATA / DIALOG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-12  |  1.1 KB  |  55 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1 dialog
  3.  
  4. class %1 : public CDialog
  5. {
  6. $$IF(OLECREATE)
  7.     DECLARE_DYNCREATE(%1)
  8.  
  9. $$ENDIF
  10. // Construction
  11. public:
  12.     %1(CWnd* pParent = NULL);   // standard constructor
  13. $$IF(OLECREATE)
  14.     ~%1();
  15. $$ENDIF
  16.  
  17. // Dialog Data
  18.     //{{AFX_DATA(%1)
  19.     enum { IDD = %3 };
  20.         // NOTE: the ClassWizard will add data members here
  21.     //}}AFX_DATA
  22.  
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(%1)
  27. $$IF(OLEAUTO)
  28.     public:
  29.     virtual void OnFinalRelease();
  30. $$ENDIF
  31.     protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. protected:
  37.  
  38.     // Generated message map functions
  39.     //{{AFX_MSG(%1)
  40.         // NOTE: the ClassWizard will add member functions here
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. $$IF(OLECREATE)
  44.     DECLARE_OLECREATE(%1)
  45. $$ENDIF
  46. $$IF(OLEAUTO)
  47.     // Generated OLE dispatch map functions
  48.     //{{AFX_DISPATCH(%1)
  49.         // NOTE - the ClassWizard will add and remove member functions here.
  50.     //}}AFX_DISPATCH
  51.     DECLARE_DISPATCH_MAP()
  52.     DECLARE_INTERFACE_MAP()
  53. $$ENDIF()
  54. };