don't use an instance
[ecparse.git] / GlobalSettings.h
index 8eaa1cd..b34052a 100644 (file)
@@ -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;
 
 };