diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-04 00:31:46 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-04 00:31:46 -0700 |
commit | 8f3b08c826f1174019386c0bfe22627bb269123d (patch) | |
tree | 1c9b0bcb10f32a64b6b268316856762e6c6b6a0d /src/options.h | |
parent | d8f0276ec9d3b538a5ef8918a3072e3528a480d5 (diff) | |
download | stage-8f3b08c826f1174019386c0bfe22627bb269123d.tar.gz stage-8f3b08c826f1174019386c0bfe22627bb269123d.tar.bz2 stage-8f3b08c826f1174019386c0bfe22627bb269123d.tar.xz stage-8f3b08c826f1174019386c0bfe22627bb269123d.zip |
Attempt to generate version.h from git.
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h new file mode 100644 index 0000000..42caa53 --- /dev/null +++ b/src/options.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef OPTIONS_H | ||
2 | #define OPTIONS_H | ||
3 | |||
4 | #include <bu/singleton.h> | ||
5 | #include <bu/string.h> | ||
6 | |||
7 | class Options : public Bu::Singleton<Options> | ||
8 | { | ||
9 | friend class Bu::Singleton<Options>; | ||
10 | private: | ||
11 | Options(); | ||
12 | virtual ~Options(); | ||
13 | |||
14 | public: | ||
15 | void parse( int argc, char *argv[] ); | ||
16 | |||
17 | Bu::String sFile; | ||
18 | }; | ||
19 | |||
20 | #endif | ||