ViewDIBDoc.h
上传用户:elida16851
上传日期:2022-08-05
资源大小:2048k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // ViewDIBDoc.h : interface of the CViewDIBDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEWDIBDOC_H__E0DA1D8C_E308_11D2_9481_000021003EA5__INCLUDED_)
  5. #define AFX_VIEWDIBDOC_H__E0DA1D8C_E308_11D2_9481_000021003EA5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Dib.h"
  10. class CViewDIBDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CViewDIBDoc();
  14. DECLARE_DYNCREATE(CViewDIBDoc)
  15. // Attributes
  16. public:
  17. CDib * m_pDib;
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CViewDIBDoc)
  23. public:
  24. virtual BOOL OnNewDocument();
  25. virtual void Serialize(CArchive& ar);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CViewDIBDoc();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CViewDIBDoc)
  38. // NOTE - the ClassWizard will add and remove member functions here.
  39. //    DO NOT EDIT what you see in these blocks of generated code !
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_VIEWDIBDOC_H__E0DA1D8C_E308_11D2_9481_000021003EA5__INCLUDED_)