studentDoc.h
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

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