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

50 lines
730 B
C++
Raw Normal View History

#include "check.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;
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()
{
return cstrVersion;
}