#ifndef OPTIONS_H #define OPTIONS_H #include class Options : public Bu::OptParser { public: Options( int argc, char *argv[] ); virtual ~Options(); private: int selfTest( Bu::StringArray aArgs ); }; #endif