/****************************************************************************** ** ** weaponguide.h ** ** Sat Aug 14 10:57:18 2004 ** Linux 2.4.21-198-default (#1 Thu Mar 11 17:43:56 UTC 2004) i686 ** martin@linux. (Martin Bickel) ** ** Header file for command line parser class ** ** Automatically created by genparse v0.5.2 ** ** See http://genparse.sourceforge.net/ for details and updates ** ******************************************************************************/ #ifndef CMDLINE_H #define CMDLINE_H #include #include /*---------------------------------------------------------------------------- ** ** class Cmdline ** ** command line parser class ** **--------------------------------------------------------------------------*/ class Cmdline { private: /* parameters */ string _c; int _r; string _d; string _l; int _s; bool _i; int _z; string _f; string _t; string _m; bool _b; string _roottech; bool _writeall; bool _h; bool _v; /* other stuff to keep track of */ string _executable; int _optind; public: /* constructor and destructor */ Cmdline(int, char **) throw(string); ~Cmdline(){} /* usage function */ void usage(); /* return next (non-option) parameter */ int next_param() { return _optind; } /* callback functions */ string c() { return _c; } int r() { return _r; } string d() { return _d; } string l() { return _l; } int s() { return _s; } bool i() { return _i; } int z() { return _z; } string f() { return _f; } string t() { return _t; } string m() { return _m; } bool b() { return _b; } string roottech() { return _roottech; } bool writeall() { return _writeall; } bool h() { return _h; } bool v() { return _v; } }; #endif