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

Windows编程

开发平台:

Visual C++

  1. // colledoc.h : interface of the CCollectDoc class
  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. class CCollectDoc : public CDocument
  13. {
  14. protected: // create from serialization only
  15. CCollectDoc();
  16. DECLARE_DYNCREATE(CCollectDoc)
  17. // Attributes
  18. public:
  19. IStlStringListPtr m_stringList;
  20. IStlMyStructListPtr m_mystructList;
  21. IStlintListPtr m_intList;
  22. IStlDWordArrayPtr m_dwArray;
  23. IStlMyObjectArrayPtr m_myobArray;
  24. IStlPointArrayPtr m_ptArray;
  25. IStlMapStringToStringPtr m_mapStringToString;
  26. IStlMapStringToMyObjectPtr m_mapStringToMyObject;
  27. IStlMapDWordToMyStructPtr m_mapDWordToMyStruct;
  28. // Operations
  29. // Overrides
  30. virtual void DeleteContents();
  31. // ClassWizard generate virtual function overrides
  32. //{{AFX_VIRTUAL(CCollectDoc)
  33. protected:
  34. virtual BOOL OnNewDocument();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CCollectDoc();
  39. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CCollectDoc)
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////