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

Windows编程

开发平台:

Visual C++

  1. // varassoc.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. // CVariantAssoc command target
  14. class CVariantAssoc : public CCmdTarget
  15. {
  16.     DECLARE_DYNCREATE(CVariantAssoc)
  17. // Constructors
  18. public:
  19.     CVariantAssoc();           // protected constructor used by dynamic creation
  20. // Attributes
  21. public:
  22.     COleVariant m_varKey;
  23.     COleVariant m_varValue;
  24. // Operations
  25. public:
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CVariantAssoc)
  29.     public:
  30.     virtual void OnFinalRelease();
  31.     //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34.     virtual ~CVariantAssoc();
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CVariantAssoc)
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.     // Generated OLE dispatch map functions
  41.     //{{AFX_DISPATCH(CVariantAssoc)
  42.     afx_msg VARIANT GetKey();
  43.     afx_msg VARIANT GetValue();
  44.     //}}AFX_DISPATCH
  45.     DECLARE_DISPATCH_MAP()
  46.     DECLARE_INTERFACE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////