@@ -263,52 +263,6 @@ class ArgsManager
263
263
264
264
extern ArgsManager gArgs ;
265
265
266
- // wrappers using the global ArgsManager:
267
- static inline void ParseParameters (int argc, const char *const argv[])
268
- {
269
- gArgs .ParseParameters (argc, argv);
270
- }
271
-
272
- static inline void ReadConfigFile (const std::string& confPath)
273
- {
274
- gArgs .ReadConfigFile (confPath);
275
- }
276
-
277
- static inline bool SoftSetArg (const std::string& strArg, const std::string& strValue)
278
- {
279
- return gArgs .SoftSetArg (strArg, strValue);
280
- }
281
-
282
- static inline void ForceSetArg (const std::string& strArg, const std::string& strValue)
283
- {
284
- gArgs .ForceSetArg (strArg, strValue);
285
- }
286
-
287
- static inline bool IsArgSet (const std::string& strArg)
288
- {
289
- return gArgs .IsArgSet (strArg);
290
- }
291
-
292
- static inline std::string GetArg (const std::string& strArg, const std::string& strDefault)
293
- {
294
- return gArgs .GetArg (strArg, strDefault);
295
- }
296
-
297
- static inline int64_t GetArg (const std::string& strArg, int64_t nDefault)
298
- {
299
- return gArgs .GetArg (strArg, nDefault);
300
- }
301
-
302
- static inline bool GetBoolArg (const std::string& strArg, bool fDefault )
303
- {
304
- return gArgs .GetBoolArg (strArg, fDefault );
305
- }
306
-
307
- static inline bool SoftSetBoolArg (const std::string& strArg, bool fValue )
308
- {
309
- return gArgs .SoftSetBoolArg (strArg, fValue );
310
- }
311
-
312
266
/* *
313
267
* Format a string to be used as group of options in help messages
314
268
*
0 commit comments