00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _ParamH_
00017 #define _ParamH_
00018
00019 #include "String.hpp"
00020
00021 extern "C" {
00022 #include "parameters.h"
00023 }
00024
00026
00027 String ParamGetString(const String &s, String &value, const String &def);
00028 String ParamGetString(const String &s);
00029 int ParamGet(const String &s, String &value);
00030 int ParamGet(const String &s, String &value, const String &def);
00031 int ParamGet(const String &s, int &value);
00032 int ParamGet(const String &s, int &value, const int &def);
00033 int ParamGet(const String &s, double &value);
00034 int ParamGet(const String &s, double &value, const double &def);
00035 int ParamGet(const String &s, float &value);
00036 int ParamGet(const String &s, float &value, const float &def);
00037 int ParamGetInt(const String &s, int def);
00038 int ParamGetBit(const String &s, int def);
00039 double ParamGetDouble(const String &s, double def);
00040 float ParamGetFloat(const String &s, float def);
00041 INT64 ParamGetLongLong(const String &s, INT64 def);
00042
00043
00045
00046 void ParamCheckpoint (void);
00047
00048
00050
00051 void ParamPushPrefix (const String &s);
00052 void ParamPopPrefix (void);
00053 int ParamPushFile (const String &s);
00054 String ParamPopFile (void);
00056 void ParamDisplay();
00057
00058 #endif