ImageProcessingDoc.h
上传用户:xjt2008yy
上传日期:2010-01-18
资源大小:272k
文件大小: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. int m_nColorIndex; // 伪彩色编码编号
  29. CDib* m_pDibTest;
  30. int InitDocVariable();
  31. int FreeDocVariable();
  32. CDib* m_pDibInit;
  33. virtual ~CImageProcessingDoc();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CImageProcessingDoc)
  42. afx_msg void OnFileSaveAs();
  43. afx_msg void OnFileReload();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_IMAGEPROCESSINGDOC_H__613B030D_9C37_11D6_A6C4_00D0094CCE8A__INCLUDED_)