home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / COMMON / MSDEV98 / BIN / MFCCLWZ.DLL / SRCDATA / RECVIEW.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  1KB  |  68 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1 record view
  3.  
  4. %9
  5.  
  6. class %1 : public CRecordView
  7. {
  8. protected:
  9.     %1();           // protected constructor used by dynamic creation
  10.     DECLARE_DYNCREATE(%1)
  11.  
  12. // Form Data
  13. public:
  14.     //{{AFX_DATA(%1)
  15.     enum { IDD = %3 };
  16.     %8* m_pSet;
  17.     //}}AFX_DATA
  18.  
  19. // Attributes
  20. public:
  21.  
  22. // Operations
  23. public:
  24.     %8* GetRecordset();
  25.  
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(%1)
  30.         // NOTE - the ClassWizard will add and remove member functions here.
  31.     public:
  32.     virtual CRecordset* OnGetRecordset();
  33. $$IF(OLEAUTO)
  34.     virtual void OnFinalRelease();
  35. $$ENDIF
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     virtual void OnInitialUpdate();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.     virtual ~%1();
  44. #ifdef _DEBUG
  45.     virtual void AssertValid() const;
  46.     virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(%1)
  51.         // NOTE - the ClassWizard will add and remove member functions here.
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. $$IF(OLECREATE)
  55.     DECLARE_OLECREATE(%1)
  56. $$ENDIF
  57. $$IF(OLEAUTO)
  58.     // Generated OLE dispatch map functions
  59.     //{{AFX_DISPATCH(%1)
  60.         // NOTE - the ClassWizard will add and remove member functions here.
  61.     //}}AFX_DISPATCH
  62.     DECLARE_DISPATCH_MAP()
  63.     DECLARE_INTERFACE_MAP()
  64. $$ENDIF()
  65. };
  66.  
  67. /////////////////////////////////////////////////////////////////////////////