图像拼接技术View.h
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:2k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // 图像拼接技术View.h : interface of the CMyView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEW_H__47231925_6B70_11D6_B55C_00D0F8011261__INCLUDED_)
  5. #define AFX_VIEW_H__47231925_6B70_11D6_B55C_00D0F8011261__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMyView : public CScrollView
  10. {
  11. protected: // create from serialization only
  12. CMyView();
  13. DECLARE_DYNCREATE(CMyView);
  14. // Attributes
  15. public:
  16. CMyDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMyView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. virtual void OnInitialUpdate();
  26. protected:
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMyView();
  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(CMyView)
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. #ifndef _DEBUG  // debug version in 图像拼接技术View.cpp
  46. inline CMyDoc* CMyView::GetDocument()
  47.    { return (CMyDoc*)m_pDocument; }
  48. #endif
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_VIEW_H__47231925_6B70_11D6_B55C_00D0F8011261__INCLUDED_)