DUDEDOC.CPP
上传用户:abcdshs
上传日期:2007-01-07
资源大小:1858k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. // dudeDoc.cpp : implementation of the DudeDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "dudes.h"
  5. #include "dudeDoc.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // DudeDoc
  8. IMPLEMENT_DYNCREATE(DudeDoc, CDocument)
  9. BEGIN_MESSAGE_MAP(DudeDoc, CDocument)
  10. //{{AFX_MSG_MAP(DudeDoc)
  11. // NOTE - the ClassWizard will add and remove mapping macros here.
  12. //    DO NOT EDIT what you see in these blocks of generated code!
  13. //}}AFX_MSG_MAP
  14. END_MESSAGE_MAP()
  15. /////////////////////////////////////////////////////////////////////////////
  16. // DudeDoc construction/destruction
  17. DudeDoc::DudeDoc()
  18. {
  19. // TODO: add one-time construction code here
  20. }
  21. DudeDoc::~DudeDoc()
  22. {
  23. }
  24. BOOL DudeDoc::OnNewDocument()
  25. {
  26. if (!CDocument::OnNewDocument())
  27. return FALSE;
  28. // TODO: add reinitialization code here
  29. // (SDI documents will reuse this document)
  30. return TRUE;
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // DudeDoc serialization
  34. void DudeDoc::Serialize(CArchive& ar)
  35. {
  36. if (ar.IsStoring())
  37. {
  38. // TODO: add storing code here
  39. }
  40. else
  41. {
  42. // TODO: add loading code here
  43. }
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // DudeDoc diagnostics
  47. #ifdef _DEBUG
  48. void DudeDoc::AssertValid() const
  49. {
  50. CDocument::AssertValid();
  51. }
  52. void DudeDoc::Dump(CDumpContext& dc) const
  53. {
  54. CDocument::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. /////////////////////////////////////////////////////////////////////////////
  58. // DudeDoc commands