MyStockDoc.cpp
上传用户:wenjimin
上传日期:2014-08-12
资源大小:111k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

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