home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / oleview / iviewers / tlblist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.6 KB  |  59 lines

  1. // tlblist.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTypeLibListView view
  16.  
  17. class CTypeLibListView : public CView
  18. {
  19. friend class CTypeLibWnd ;
  20. protected:
  21.     CTypeLibListView();           // protected constructor used by dynamic creation
  22.     DECLARE_DYNCREATE(CTypeLibListView)
  23.  
  24. // Attributes
  25. public:
  26.     CListCtrl       m_list ;
  27. // Operations
  28. public:
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CTypeLibListView)
  33.     public:
  34.     virtual void OnInitialUpdate();
  35.     protected:
  36.     virtual void OnDraw(CDC* pDC);
  37.     virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.     virtual ~CTypeLibListView();
  43. #ifdef _DEBUG
  44.     virtual void AssertValid() const;
  45.     virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47.  
  48.     // Generated message map functions
  49. protected:
  50.     //{{AFX_MSG(CTypeLibListView)
  51.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52.     afx_msg void OnDestroy();
  53.     afx_msg void OnSize(UINT nType, int cx, int cy);
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.