X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=blobdiff_plain;f=GlobalSettings.h;h=b34052ac78f518a8a6f94af576f81918f6d8ffc2;hp=8eaa1cd7b77319f6ca7798450bf94b580f271c0b;hb=32c400b49b79aaebf2bd9b305a67e74ac115b5a0;hpb=46f6c3d3ed2e03261fa726806dde9dcc605c0140 diff --git a/GlobalSettings.h b/GlobalSettings.h index 8eaa1cd..b34052a 100644 --- a/GlobalSettings.h +++ b/GlobalSettings.h @@ -6,19 +6,12 @@ class GlobalSettings { -private: - GlobalSettings(); - ~GlobalSettings(); - public: - static GlobalSettings* getInstance(); - - bool isVerbose(); - void setVerbose(bool verbose); + static bool isVerbose(); + static void setVerbose(bool verbose); private: - static GlobalSettings* instance; - bool verbose; + static bool verbose; };