PropPgFormDoc.cpp
上传用户:sisi1999
上传日期:2007-01-02
资源大小:39k
文件大小:2k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // PropPgFormDoc.cpp : implementation of the CPropPgFormDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "SheetInView.h"
  5. #include "PropPgFormDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPropPgFormDoc
  13. IMPLEMENT_DYNCREATE(CPropPgFormDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CPropPgFormDoc, CDocument)
  15. //{{AFX_MSG_MAP(CPropPgFormDoc)
  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. // CPropPgFormDoc construction/destruction
  22. CPropPgFormDoc::CPropPgFormDoc()
  23. {
  24. }
  25. CPropPgFormDoc::~CPropPgFormDoc()
  26. {
  27. }
  28. BOOL CPropPgFormDoc::OnNewDocument()
  29. {
  30. if (!CDocument::OnNewDocument())
  31. return FALSE;
  32. return TRUE;
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CPropPgFormDoc serialization
  36. void CPropPgFormDoc::Serialize(CArchive& ar)
  37. {
  38. if (ar.IsStoring())
  39. {
  40. // TODO: add storing code here
  41. }
  42. else
  43. {
  44. // TODO: add loading code here
  45. }
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CPropPgFormDoc diagnostics
  49. #ifdef _DEBUG
  50. void CPropPgFormDoc::AssertValid() const
  51. {
  52. CDocument::AssertValid();
  53. }
  54. void CPropPgFormDoc::Dump(CDumpContext& dc) const
  55. {
  56. CDocument::Dump(dc);
  57. }
  58. #endif //_DEBUG
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CPropPgFormDoc commands