telsale-management/代码/telsale_aux_kit/source/SystemData.cpp

52 lines
833 B
C++
Raw Normal View History

#include "SystemData.h"
2018-06-01 10:21:26 +00:00
//hash_map<string, string> parameters; //存放参数的hashmap
2018-06-01 10:21:26 +00:00
//版本号
const string cstrVersion = "0.99";
string strUserCode;
string strUserName;
string strUserPassword;
2018-06-01 10:21:26 +00:00
//参数
Parameters parameters( "config.db" );
//bool checkVersion()
//{
// bool result = false;
2018-06-01 10:21:26 +00:00
// hash_map<string,string>::iterator iter = parameters.find( string("版本号") );
//
// if ( iter != parameters.end() && iter->second == cstrVersion )
// {
// result = true;
// }
//
// return result;
//}
string getUserCode()
{
return strUserCode;
}
string getUserName()
{
return strUserName;
}
void setUserCode(const string & cstrUserCode)
{
strUserCode = cstrUserCode;
}
void setUserName(const string & cstrUserName)
{
strUserName = cstrUserName;
}
string getVersion()
{
2018-06-01 10:21:26 +00:00
return parameters.getParameter("版本号");
}