home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SAMPLES / VBCIRCLE / FRAME.H_ / FRAME.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1013 b   |  41 lines

  1. // frame.h : interface of the CVBCircleFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15.  
  16. class CVBCircleFrame : public CFrameWnd
  17. {
  18. // Construction
  19. public:
  20.     CVBCircleFrame();
  21.  
  22. // Attributes
  23. protected:
  24.     CVBControl m_circle;
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CVBCircleFrame();
  29.  
  30. // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CVBCircleFrame)
  33.     afx_msg void OnEditCircle();
  34.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35.     afx_msg void OnPaint();
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.