increase version number to 0.1
[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 public:
10         static bool isVerbose();
11         static void setVerbose(bool verbose);
12
13 private:
14         static bool verbose;
15
16 };
17