22 lines
355 B
C
22 lines
355 B
C
|
|
||
|
#ifndef check_h__
|
||
|
#define check_h__
|
||
|
|
||
|
#include <hash_map>
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
extern hash_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__
|