TOOLDOC.CPP
上传用户:zbjingming
上传日期:2010-01-02
资源大小:2436k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // ToolDoc.cpp
  2. // The active document, contain a SceneGraph
  3. // feigz@ox.ios.ac.cn
  4. // Created : 4/12/98
  5. // Modified  6/16/98
  6. #include "stdafx.h"
  7. #include "math.h"
  8. #include "Tool.h"
  9. #include "ToolDoc.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. IMPLEMENT_DYNCREATE(CToolDoc, CDocument)
  16. BEGIN_MESSAGE_MAP(CToolDoc, CDocument)
  17. //{{AFX_MSG_MAP(CToolDoc)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. END_MESSAGE_MAP()
  22. extern CToolApp theApp;
  23. // CToolDoc construction/destruction
  24. // Constructor
  25. CToolDoc::CToolDoc()
  26. {
  27. }
  28. // Destructor
  29. CToolDoc::~CToolDoc()
  30. {
  31. }
  32. BOOL CToolDoc::OnNewDocument()
  33. {
  34. if (!CDocument::OnNewDocument())
  35. return FALSE;
  36. return TRUE;
  37. }
  38. // CToolDoc serialization
  39. void CToolDoc::Serialize(CArchive& ar)
  40. {
  41. if (ar.IsStoring()){}
  42. else{}
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CToolDoc diagnostics
  46. #ifdef _DEBUG
  47. void CToolDoc::AssertValid() const
  48. {
  49. CDocument::AssertValid();
  50. }
  51. void CToolDoc::Dump(CDumpContext& dc) const
  52. {
  53. CDocument::Dump(dc);
  54. }
  55. #endif //_DEBUG