aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorMarko Bencun <marko.bencun@monetas.net>2017-06-15 22:45:55 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-08-14 17:02:36 +0200
commitfcbde9091e7cd644237010f16f27052ac3b0d1ad (patch)
tree1a5a6899ff01632822303c4a211f90976a457e82 /src/util.h
parentbb81e1735575e1c00e808326735168cc9810c174 (diff)
downloadbitcoin-fcbde9091e7cd644237010f16f27052ac3b0d1ad.tar.xz
remove unused gArgs wrappers
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/util.h b/src/util.h
index b01606cb8f..ead3d3d935 100644
--- a/src/util.h
+++ b/src/util.h
@@ -263,52 +263,6 @@ public:
extern ArgsManager gArgs;
-// wrappers using the global ArgsManager:
-static inline void ParseParameters(int argc, const char*const argv[])
-{
- gArgs.ParseParameters(argc, argv);
-}
-
-static inline void ReadConfigFile(const std::string& confPath)
-{
- gArgs.ReadConfigFile(confPath);
-}
-
-static inline bool SoftSetArg(const std::string& strArg, const std::string& strValue)
-{
- return gArgs.SoftSetArg(strArg, strValue);
-}
-
-static inline void ForceSetArg(const std::string& strArg, const std::string& strValue)
-{
- gArgs.ForceSetArg(strArg, strValue);
-}
-
-static inline bool IsArgSet(const std::string& strArg)
-{
- return gArgs.IsArgSet(strArg);
-}
-
-static inline std::string GetArg(const std::string& strArg, const std::string& strDefault)
-{
- return gArgs.GetArg(strArg, strDefault);
-}
-
-static inline int64_t GetArg(const std::string& strArg, int64_t nDefault)
-{
- return gArgs.GetArg(strArg, nDefault);
-}
-
-static inline bool GetBoolArg(const std::string& strArg, bool fDefault)
-{
- return gArgs.GetBoolArg(strArg, fDefault);
-}
-
-static inline bool SoftSetBoolArg(const std::string& strArg, bool fValue)
-{
- return gArgs.SoftSetBoolArg(strArg, fValue);
-}
-
/**
* Format a string to be used as group of options in help messages
*