1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef OPTIONS_H #define OPTIONS_H #include <bu/optparser.h> class Options : public Bu::OptParser { public: Options( int argc, char *argv[] ); virtual ~Options(); private: int selfTest( Bu::StringArray aArgs ); }; #endif