diff options
author | Mike Buland <mike@xagasoft.com> | 2013-04-23 09:47:29 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2013-04-23 09:47:29 -0600 |
commit | c234914394b4c8cdee66d7528bad3c132f90dc4d (patch) | |
tree | e2204b30d1edd0d7f45a5f8579738e8fa274c644 /src/options.h | |
parent | 95da25821bcbcd6a94a7fdf64da1618f5324b779 (diff) | |
download | clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.gz clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.bz2 clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.xz clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.zip |
Added cli params & a unit test.
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h new file mode 100644 index 0000000..667e486 --- /dev/null +++ b/src/options.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef OPTIONS_H | ||
2 | #define OPTIONS_H | ||
3 | |||
4 | #include <bu/optparser.h> | ||
5 | |||
6 | class Options : public Bu::OptParser | ||
7 | { | ||
8 | public: | ||
9 | Options( int argc, char *argv[] ); | ||
10 | virtual ~Options(); | ||
11 | |||
12 | private: | ||
13 | int selfTest( Bu::StringArray aArgs ); | ||
14 | }; | ||
15 | |||
16 | #endif | ||