home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / windows / graphs / multicon.arj / MODVIEW.H < prev    next >
C/C++ Source or Header  |  1994-03-10  |  2KB  |  66 lines

  1. //*************************************************************
  2. //  File name: MODVIEW.H
  3. //
  4. //  Description:
  5. //     Declares the interface for the CModView class
  6. //
  7. //  History:    Date       Author     Comment
  8. //              3/7/94     FJB        Created
  9. //
  10. // Written by Microsoft Product Support Services, Windows Developer Support
  11. // Copyright (c) 1994 Microsoft Corporation. All rights reserved.
  12. //*************************************************************
  13.  
  14. //*************************************************************
  15. //  Class:
  16. //      CModView 
  17. //
  18. //  Description:
  19. //      AppWizard generated view class that exposes a public OnDraw override.
  20. //
  21. //  Derived from:
  22. //      CView
  23. //
  24. //  Data Members:
  25. //      None
  26. //
  27. //  Member Functions:
  28. //      CModView      : Constructor
  29. //     ~CModView      : Destructor
  30. //      OnDraw        : Does nothing
  31. //
  32. //
  33. //  History:    Date       Author     Comment
  34. //              3/7/94     FJB        Created
  35. //
  36. //*************************************************************  
  37.  
  38.  
  39. class CModView : public CView
  40. {
  41.    DECLARE_DYNCREATE(CModView)
  42. protected:
  43.    CModView();       // protected constructor used by dynamic creation
  44.  
  45. // Attributes
  46. public:
  47.  
  48. // Operations
  49. public:
  50.   virtual  void OnDraw(CDC* pDC);     // make it public so the frame can get 
  51.                                       // to it
  52.  
  53. // Implementation
  54. protected:
  55.    virtual ~CModView();
  56.  
  57.    // Generated message map functions
  58. protected:
  59.    //{{AFX_MSG(CModView)
  60.       // NOTE - the ClassWizard will add and remove member functions here.
  61.    //}}AFX_MSG
  62.    DECLARE_MESSAGE_MAP()
  63. };
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66.