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

金融证券系统

开发平台:

Visual C++

  1. // MyStockDoc.h : interface of the CMyStockDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYSTOCKDOC_H__D0A9094D_8FA4_4894_9494_5FCEE0FC7C84__INCLUDED_)
  5. #define AFX_MYSTOCKDOC_H__D0A9094D_8FA4_4894_9494_5FCEE0FC7C84__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include<afxcoll.h>//包含CMapStringToOb等
  10. class CMyStockDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CMyStockDoc();
  14. DECLARE_DYNCREATE(CMyStockDoc)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. CMapStringToOb m_DataMap;
  20. CString m_FileName;
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMyStockDoc)
  24. public:
  25. virtual BOOL OnNewDocument();
  26. virtual void Serialize(CArchive& ar);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CMyStockDoc();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CMyStockDoc)
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code !
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_MYSTOCKDOC_H__D0A9094D_8FA4_4894_9494_5FCEE0FC7C84__INCLUDED_)