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 / HTMLVIEW.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  1KB  |  65 lines

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