/****************************************************************************** ** ** CmdlineInterface.java ** ** Thu Oct 4 20:10:00 2007 ** Linux 2.6.19 (#1 Sun Jan 21 11:52:23 CET 2007) i686 ** linux@mgpc (Michael Geng) ** ** Interface of the command line parser class ** ** Automatically created by genparse v0.7.1 ** ** See http://genparse.sourceforge.net for details and updates ** ******************************************************************************/ /*---------------------------------------------------------------------------- ** ** interface CmdlineInterface ** ** Interface of the command line parser class ** **--------------------------------------------------------------------------*/ public interface CmdlineInterface { /* usage function */ void usage (int status, String program_name); /* return next (non-option) parameter */ int next_param (); /* callback functions */ boolean my_callback (); boolean outfile_cb (); /* getter functions for command line parameters */ int i (); String o (); boolean h (); boolean v (); };