SysStatus.cpp
上传用户:xiaoke98
上传日期:2014-06-29
资源大小:5718k
文件大小:1k
- // SysStatus.cpp: implementation of the CSysStatus class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "HomeFinanceManager.h"
- #include "SysStatus.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CSysStatus gSysStatus;
- CSysStatus::CSysStatus()
- {
- m_bHasLogin = false;
- m_strUserName = "未登录用户";
- }
- CSysStatus::~CSysStatus()
- {
- }
- void CSysStatus::setLoginStatus(BOOL bLogin)
- {
- m_bHasLogin = bLogin;
- }
- BOOL CSysStatus::getLoginStatus(void)
- {
- return m_bHasLogin;
- }
- void CSysStatus::setUserName(CString strName)
- {
- m_strUserName = strName;
- }
- CString CSysStatus::getUserName(void)
- {
- return m_strUserName;
- }