ENUMVAR.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // enumvar.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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 related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CEnumVariant command target
  14. class CEnumVariant : public CCmdTarget
  15. {
  16.     DECLARE_DYNCREATE(CEnumVariant)
  17. public:
  18.     CEnumVariant();         // protected constructor used by dynamic creation
  19. // Attributes
  20. public:
  21.     int m_nIndex;           // next/current position w/in m_rgContents
  22.     int m_nCount;           // total count of variants
  23.     VARIANT* m_pContents;   // contents of collection
  24. // Operations
  25. public:
  26.     void SetContents(VARIANT* pContents, int nCount, int nIndex = 0);
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CEnumVariant)
  30.     public:
  31.     virtual void OnFinalRelease();
  32.     //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35.     virtual ~CEnumVariant();
  36.     CEnumVariant* m_pClonedFrom;
  37.     // Generated message map functions
  38.     //{{AFX_MSG(CEnumVariant)
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. public:
  43.     // Implementation of IEnumVARIANT
  44.     BEGIN_INTERFACE_PART(EnumVARIANT, IEnumVARIANT)
  45.         STDMETHOD(Next)(ULONG celt, VARIANT* rgvar, ULONG* pceltFetched);
  46.         STDMETHOD(Skip)(ULONG celt) ;
  47.         STDMETHOD(Reset)() ;
  48.         STDMETHOD(Clone)(IEnumVARIANT** ppenum);
  49.     END_INTERFACE_PART(EnumVARIANT)    
  50.     DECLARE_INTERFACE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////