add version information
[ecparse.git] / GlobalSettings.h
1 /**
2  * © 2008 by David ‘Bombe’ Roden <bombe@pterodactylus.net>
3  */
4
5 #pragma once
6
7 class GlobalSettings {
8
9 private:
10         GlobalSettings();
11         ~GlobalSettings();
12
13 public:
14         static GlobalSettings* getInstance();
15
16         void setVerbose(bool verbose);
17
18 private:
19         static GlobalSettings* instance;
20         bool verbose;
21
22 };
23