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

Windows编程

开发平台:

Visual C++

  1. // ipdridoc.h : interface of the CDriverDoc 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 CDriverDoc : public CDocument
  13. {
  14. protected: // create from serialization only
  15.     CDriverDoc();
  16.     DECLARE_DYNCREATE(CDriverDoc)
  17. // Attributes
  18. public:
  19.     IVariantMapPtr m_map;   // "remoted" variant map
  20. // Operations
  21. public:
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CDriverDoc)
  25.     public:
  26.     virtual BOOL OnNewDocument();
  27.     //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30.     virtual ~CDriverDoc();
  31.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  32. #ifdef _DEBUG
  33.     virtual void AssertValid() const;
  34.     virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39.     //{{AFX_MSG(CDriverDoc)
  40.         // NOTE - the ClassWizard will add and remove member functions here.
  41.         //    DO NOT EDIT what you see in these blocks of generated code !
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////