ImageProcessingDoc.h
上传用户:piaozanzhu
上传日期:2008-02-14
资源大小:212k
文件大小:2k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // ImageProcessingDoc.h : interface of the CImageProcessingDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_IMAGEPROCESSINGDOC_H__613B030D_9C37_11D6_A6C4_00D0094CCE8A__INCLUDED_)
  5. #define AFX_IMAGEPROCESSINGDOC_H__613B030D_9C37_11D6_A6C4_00D0094CCE8A__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "CDib.h"
  10. class CImageProcessingDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CImageProcessingDoc();
  14. DECLARE_DYNCREATE(CImageProcessingDoc)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CImageProcessingDoc)
  22. public:
  23. virtual BOOL OnNewDocument();
  24. virtual void Serialize(CArchive& ar);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. CDib* m_pDibTest;
  29. int InitDocVariable();
  30. int FreeDocVariable();
  31. CDib* m_pDibInit;
  32. virtual ~CImageProcessingDoc();
  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(CImageProcessingDoc)
  41. afx_msg void OnFileSaveAs();
  42. afx_msg void OnFileReload();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_IMAGEPROCESSINGDOC_H__613B030D_9C37_11D6_A6C4_00D0094CCE8A__INCLUDED_)