ROADoc.cpp
上传用户:tianheyiqi
上传日期:2010-04-16
资源大小:282k
文件大小:2k
源码类别:

外挂编程

开发平台:

Visual C++

  1. // ROADoc.cpp : implementation of the CROADoc class
  2. //
  3. #include "stdafx.h"
  4. #include "ROA.h"
  5. #include "ROADoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CROADoc
  13. IMPLEMENT_DYNCREATE(CROADoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CROADoc, CDocument)
  15. //{{AFX_MSG_MAP(CROADoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CROADoc construction/destruction
  22. CROADoc::CROADoc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CROADoc::~CROADoc()
  27. {
  28. }
  29. BOOL CROADoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. ((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CROADoc serialization
  40. void CROADoc::Serialize(CArchive& ar)
  41. {
  42. // CEditView contains an edit control which handles all serialization
  43. ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CROADoc diagnostics
  47. #ifdef _DEBUG
  48. void CROADoc::AssertValid() const
  49. {
  50. CDocument::AssertValid();
  51. }
  52. void CROADoc::Dump(CDumpContext& dc) const
  53. {
  54. CDocument::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CROADoc commands