CBIRDoc.h
上传用户:xayxjz
上传日期:2022-08-07
资源大小:2188k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // CBIRDoc.h : interface of the CCBIRDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CBIRDOC_H__9B78BDC1_FE19_4821_9224_C57B8BD68F91__INCLUDED_)
  5. #define AFX_CBIRDOC_H__9B78BDC1_FE19_4821_9224_C57B8BD68F91__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CCBIRDoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CCBIRDoc();
  13. DECLARE_DYNCREATE(CCBIRDoc)
  14. // Attributes
  15. public:
  16. BOOL m_bImageLoaded;
  17. CDibObject *m_pDibObject;
  18. // Operations
  19. public:
  20.     BOOL ReadImgToDoc();
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CCBIRDoc)
  24. public:
  25. virtual BOOL OnNewDocument();
  26. virtual void Serialize(CArchive& ar);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CCBIRDoc();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CCBIRDoc)
  39. afx_msg void OnFileNew();
  40. afx_msg void OnFileOpen();
  41. afx_msg void OnFileSaveAs();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_CBIRDOC_H__9B78BDC1_FE19_4821_9224_C57B8BD68F91__INCLUDED_)