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

Windows编程

开发平台:

Visual C++

  1. // varmap.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. // CVariantMap command target
  14. class CVariantMap : public CCmdTarget
  15. {
  16.     DECLARE_DYNCREATE(CVariantMap)
  17. protected:
  18.     CVariantMap();           // protected constructor used by dynamic creation
  19. // Attributes
  20. public:
  21.     CString m_str2;
  22.     long m_i2;
  23. // Operations
  24. public:
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CVariantMap)
  28.     public:
  29.     virtual void OnFinalRelease();
  30.     //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33.     virtual ~CVariantMap();
  34.     CMapVariantToVariant m_map;
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CVariantMap)
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.     DECLARE_OLECREATE(CVariantMap)
  41.     // Generated OLE dispatch map functions
  42.     //{{AFX_DISPATCH(CVariantMap)
  43.     CString m_str1;
  44.     long m_i1;
  45.     afx_msg BSTR GetStr2();
  46.     afx_msg void SetStr2(LPCTSTR lpszNewValue);
  47.     afx_msg long GetI2();
  48.     afx_msg void SetI2(long nNewValue);
  49.     afx_msg long GetCount();
  50.     afx_msg void SetAt(const VARIANT FAR& from, const VARIANT FAR& to);
  51.     afx_msg void RemoveAll();
  52.     afx_msg void RemoveKey(const VARIANT FAR& key);
  53.     afx_msg BOOL IsEmpty();
  54.     afx_msg VARIANT GetItem(const VARIANT FAR& from);
  55.     //}}AFX_DISPATCH
  56.     DECLARE_DISPATCH_MAP()
  57.     afx_msg LPUNKNOWN GetNewEnum();
  58.     DECLARE_INTERFACE_MAP()
  59. };
  60. /////////////////////////////////////////////////////////////////////////////