summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h16
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
6class Options : public Bu::OptParser
7{
8public:
9 Options( int argc, char *argv[] );
10 virtual ~Options();
11
12private:
13 int selfTest( Bu::StringArray aArgs );
14};
15
16#endif