WordSegDoc.cpp
上传用户:qzyuheng
上传日期:2013-04-28
资源大小:71k
文件大小:2k
源码类别:

词法分析

开发平台:

Visual C++

  1. // WordSegDoc.cpp : implementation of the CWordSegDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "WordSeg.h"
  5. #include "WordSegDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWordSegDoc
  13. IMPLEMENT_DYNCREATE(CWordSegDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CWordSegDoc, CDocument)
  15. //{{AFX_MSG_MAP(CWordSegDoc)
  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. // CWordSegDoc construction/destruction
  22. CWordSegDoc::CWordSegDoc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CWordSegDoc::~CWordSegDoc()
  27. {
  28. }
  29. BOOL CWordSegDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. // TODO: add reinitialization code here
  34. // (SDI documents will reuse this document)
  35. return TRUE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CWordSegDoc serialization
  39. void CWordSegDoc::Serialize(CArchive& ar)
  40. {
  41. // CEditView contains an edit control which handles all serialization
  42. ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CWordSegDoc diagnostics
  46. #ifdef _DEBUG
  47. void CWordSegDoc::AssertValid() const
  48. {
  49. CDocument::AssertValid();
  50. }
  51. void CWordSegDoc::Dump(CDumpContext& dc) const
  52. {
  53. CDocument::Dump(dc);
  54. }
  55. #endif //_DEBUG
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CWordSegDoc commands