X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=blobdiff_plain;f=GlobalSettings.h;h=b34052ac78f518a8a6f94af576f81918f6d8ffc2;hp=cc9df32effa1e2fdc5a4fc750ff2aa89fa16f0e8;hb=7cb0ee62f4712e3f79b387ee0648da27551e9755;hpb=b5365167e09a5a936a42340737ab5d2e538b1e27 diff --git a/GlobalSettings.h b/GlobalSettings.h index cc9df32..b34052a 100644 --- a/GlobalSettings.h +++ b/GlobalSettings.h @@ -6,18 +6,12 @@ class GlobalSettings { -private: - GlobalSettings(); - ~GlobalSettings(); - public: - static GlobalSettings* getInstance(); - - void setVerbose(bool verbose); + static bool isVerbose(); + static void setVerbose(bool verbose); private: - static GlobalSettings* instance; - bool verbose; + static bool verbose; };