projects
/
ecparse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add hash tag
[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