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

Windows编程

开发平台:

Visual C++

  1. // strcoll.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. // CStringCollect command target
  14. class CStringCollect : public CCmdTarget
  15. {
  16.     DECLARE_DYNCREATE(CStringCollect)
  17. protected:
  18.     CStringCollect();           // protected constructor used by dynamic creation
  19. // Attributes
  20. public:
  21.     CStringArray m_strArray;
  22. // Operations
  23. public:
  24.     void CheckIndex(long nIndex);
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CStringCollect)
  28.     public:
  29.     virtual void OnFinalRelease();
  30.     //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33.     virtual ~CStringCollect();
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CStringCollect)
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39.     DECLARE_OLECREATE(CStringCollect)
  40.     // Generated OLE dispatch map functions
  41.     //{{AFX_DISPATCH(CStringCollect)
  42.     afx_msg long GetCount();
  43.     afx_msg long Add(LPCTSTR newValue);
  44.     afx_msg long Find(LPCTSTR findValue);
  45.     afx_msg long Remove(const VARIANT FAR& removeValue);
  46.     afx_msg void RemoveAll();
  47.     afx_msg BSTR GetItem(long nIndex);
  48.     afx_msg void SetItem(long nIndex, LPCTSTR lpszNewValue);
  49.     //}}AFX_DISPATCH
  50.     afx_msg LPUNKNOWN GetNewEnum();
  51.     DECLARE_DISPATCH_MAP()
  52.     DECLARE_INTERFACE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////