HomeFinanceManagerDoc.h
上传用户:xiaoke98
上传日期:2014-06-29
资源大小:5718k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // HomeFinanceManagerDoc.h : interface of the CHomeFinanceManagerDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_HOMEFINANCEMANAGERDOC_H__7A26040C_D2B0_4682_9101_EA1D2BAE142F__INCLUDED_)
  5. #define AFX_HOMEFINANCEMANAGERDOC_H__7A26040C_D2B0_4682_9101_EA1D2BAE142F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CHomeFinanceManagerDoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CHomeFinanceManagerDoc();
  13. DECLARE_DYNCREATE(CHomeFinanceManagerDoc)
  14. // Attributes
  15. public:
  16. // Operations
  17. //切换到登录窗口
  18. void Login(CView* pSender);
  19. void    VerifyUser(CView* pSender);
  20. //收支平衡表
  21. void Balance(CView* pSender);
  22. //收入窗口
  23. void FinanceIn(CView* pSender);
  24. //支出窗口
  25. void FinanceOut(CView* pSender);
  26. public:
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CHomeFinanceManagerDoc)
  30. public:
  31. virtual BOOL OnNewDocument();
  32. virtual void Serialize(CArchive& ar);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CHomeFinanceManagerDoc();
  37. #ifdef _DEBUG
  38. virtual void AssertValid() const;
  39. virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41. protected:
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CHomeFinanceManagerDoc)
  45. // NOTE - the ClassWizard will add and remove member functions here.
  46. //    DO NOT EDIT what you see in these blocks of generated code !
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. bool m_bHasLogin;//判断是否已经登录
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_HOMEFINANCEMANAGERDOC_H__7A26040C_D2B0_4682_9101_EA1D2BAE142F__INCLUDED_)