X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=GlobalSettings.h;h=b34052ac78f518a8a6f94af576f81918f6d8ffc2;hb=e9bd547c31bc06fac87b49cafa624c03c2d50c91;hp=cc9df32effa1e2fdc5a4fc750ff2aa89fa16f0e8;hpb=b5365167e09a5a936a42340737ab5d2e538b1e27;p=ecparse.git 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; };