home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Java++ / SHAREDIDE / BIN / MFCCLWZ.DLL / SRCDATA / RICHVIEW.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-27  |  1.1 KB  |  53 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1 view
  3.  
  4. class %1 : public CRichEditView
  5. {
  6. protected: // create from serialization only
  7.     %1();
  8.     DECLARE_DYNCREATE(%1)
  9.  
  10. // Attributes
  11. public:
  12.  
  13. // Operations
  14. public:
  15.  
  16. // Overrides
  17.     // ClassWizard generated virtual function overrides
  18.     //{{AFX_VIRTUAL(%1)
  19. $$IF(OLEAUTO)
  20.     public:
  21.     virtual void OnFinalRelease();
  22. $$ENDIF
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~%1();
  28. #ifdef _DEBUG
  29.     virtual void AssertValid() const;
  30.     virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32.  
  33. protected:
  34.     // Generated message map functions
  35.     //{{AFX_MSG(%1)
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. $$IF(OLECREATE)
  40.     DECLARE_OLECREATE(%1)
  41. $$ENDIF
  42. $$IF(OLEAUTO)
  43.     // Generated OLE dispatch map functions
  44.     //{{AFX_DISPATCH(%1)
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.     //}}AFX_DISPATCH
  47.     DECLARE_DISPATCH_MAP()
  48.     DECLARE_INTERFACE_MAP()
  49. $$ENDIF()
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////