FormatNumDoc.cpp
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

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