home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / ipdrive / ipdridoc.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  56 lines

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