home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / com / dcom / atldraw / atlddoc.h < prev    next >
C/C++ Source or Header  |  1998-04-02  |  1KB  |  55 lines

  1. // ATLDrawDoc.h : interface of the CATLDrawDoc class
  2. //
  3. // This is a part of the ActiveX Template Library.
  4. // Copyright (C) 1996 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // ActiveX Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // ActiveX Template Library product.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. class CATLDrawDoc : public CDocument
  16. {
  17. protected: // create from serialization only
  18.     CATLDrawDoc();
  19.     DECLARE_DYNCREATE(CATLDrawDoc)
  20.  
  21. // Attributes
  22. public:
  23.  
  24. // Operations
  25. public:
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CATLDrawDoc)
  30.     public:
  31.     virtual BOOL OnNewDocument();
  32.     virtual void Serialize(CArchive& ar);
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CATLDrawDoc();
  38. #ifdef _DEBUG
  39.     virtual void AssertValid() const;
  40.     virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42.  
  43. protected:
  44.  
  45. // Generated message map functions
  46. protected:
  47.     //{{AFX_MSG(CATLDrawDoc)
  48.         // NOTE - the ClassWizard will add and remove member functions here.
  49.         //    DO NOT EDIT what you see in these blocks of generated code !
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.