OnDraw.cpp
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // OnDraw.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "OnDraw.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // OnDraw
  13. IMPLEMENT_DYNCREATE(OnDraw, CDocument)
  14. OnDraw::OnDraw()
  15. {
  16. }
  17. BOOL OnDraw::OnNewDocument()
  18. {
  19. if (!CDocument::OnNewDocument())
  20. return FALSE;
  21. return TRUE;
  22. }
  23. OnDraw::~OnDraw()
  24. {
  25. }
  26. BEGIN_MESSAGE_MAP(OnDraw, CDocument)
  27. //{{AFX_MSG_MAP(OnDraw)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // OnDraw diagnostics
  32. #ifdef _DEBUG
  33. void OnDraw::AssertValid() const
  34. {
  35. CDocument::AssertValid();
  36. }
  37. void OnDraw::Dump(CDumpContext& dc) const
  38. {
  39. CDocument::Dump(dc);
  40. }
  41. #endif //_DEBUG
  42. /////////////////////////////////////////////////////////////////////////////
  43. // OnDraw serialization
  44. void OnDraw::Serialize(CArchive& ar)
  45. {
  46. if (ar.IsStoring())
  47. {
  48. // TODO: add storing code here
  49. }
  50. else
  51. {
  52. // TODO: add loading code here
  53. }
  54. }
  55. /////////////////////////////////////////////////////////////////////////////
  56. // OnDraw commands