SaveReadDoc.h
上传用户:wmflame
上传日期:2010-02-25
资源大小:39k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // SaveReadDoc.h : interface of the CSaveReadDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SAVEREADDOC_H__70B4B52E_1DEE_11D4_B0E6_00001A012804__INCLUDED_)
  5. #define AFX_SAVEREADDOC_H__70B4B52E_1DEE_11D4_B0E6_00001A012804__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CSaveReadDoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CSaveReadDoc();
  13. DECLARE_DYNCREATE(CSaveReadDoc)
  14. // Attributes
  15. public:
  16. CString  name ;                    //姓名
  17. struct {
  18.  int  subject;              //  科目序号
  19.  float score;                   //  该科成绩
  20. }  m_nSubject[8]; 
  21. float total;                          //   总成绩    
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CSaveReadDoc)
  27. public:
  28. virtual BOOL OnNewDocument();
  29. virtual void Serialize(CArchive& ar);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CSaveReadDoc();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CSaveReadDoc)
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //    DO NOT EDIT what you see in these blocks of generated code !
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_SAVEREADDOC_H__70B4B52E_1DEE_11D4_B0E6_00001A012804__INCLUDED_)