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

Windows编程

开发平台:

Visual C++

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