DAODepartmentDoc.cpp
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // DAODepartmentDoc.cpp : implementation of the CDAODepartmentDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "DAODepartment.h"
  5. #include "DAODepartmentSet.h"
  6. #include "DAODepartmentDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDAODepartmentDoc
  14. IMPLEMENT_DYNCREATE(CDAODepartmentDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CDAODepartmentDoc, CDocument)
  16. //{{AFX_MSG_MAP(CDAODepartmentDoc)
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CDAODepartmentDoc construction/destruction
  21. CDAODepartmentDoc::CDAODepartmentDoc()
  22. {
  23. }
  24. CDAODepartmentDoc::~CDAODepartmentDoc()
  25. {
  26. }
  27. BOOL CDAODepartmentDoc::OnNewDocument()
  28. {
  29. if (!CDocument::OnNewDocument())
  30. return FALSE;
  31. return TRUE;
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CDAODepartmentDoc serialization
  35. void CDAODepartmentDoc::Serialize(CArchive& ar)
  36. {
  37. if (ar.IsStoring())
  38. {
  39. }
  40. else
  41. {
  42. }
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CDAODepartmentDoc diagnostics
  46. #ifdef _DEBUG
  47. void CDAODepartmentDoc::AssertValid() const
  48. {
  49. CDocument::AssertValid();
  50. }
  51. void CDAODepartmentDoc::Dump(CDumpContext& dc) const
  52. {
  53. CDocument::Dump(dc);
  54. }
  55. #endif //_DEBUG
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CDAODepartmentDoc commands