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

22 lines
365 B
C
Raw Permalink Normal View History

#ifndef check_h__
#define check_h__
#include <string>
2018-06-02 09:47:28 +00:00
#include <unordered_map>
using namespace std;
2018-06-02 09:47:28 +00:00
extern unordered_map<string, string> parameters;
bool checkVersion();
string getUserCode();
string getUserName();
void setUserCode( const string & cstrUserCode );
void setUserName( const string & cstrUserName );
string getVersion();
#endif // check_h__