InhabitantsDoc.h
上传用户:yuxuan88
上传日期:2022-05-09
资源大小:2290k
文件大小:2k
源码类别:

行业应用

开发平台:

Visual C++

  1. // InhabitantsDoc.h : interface of the CInhabitantsDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_INHABITANTSDOC_H__6217AB50_E261_4347_A4D1_A1E37525F6DE__INCLUDED_)
  5. #define AFX_INHABITANTSDOC_H__6217AB50_E261_4347_A4D1_A1E37525F6DE__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "House.h"
  10. class CInhabitantsDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CInhabitantsDoc();
  14. DECLARE_DYNCREATE(CInhabitantsDoc)
  15. // Attributes
  16. public:
  17. CHouse m_dbHouse;
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CInhabitantsDoc)
  23. public:
  24. virtual BOOL OnNewDocument();
  25. virtual void Serialize(CArchive& ar);
  26. virtual void DeleteContents();
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. int AddUser(USER &user);
  31. BOOL DeleteUser(CString strSql);
  32. virtual ~CInhabitantsDoc();
  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(CInhabitantsDoc)
  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_INHABITANTSDOC_H__6217AB50_E261_4347_A4D1_A1E37525F6DE__INCLUDED_)