diff liboctave/prog-args.h @ 10191:a552859b009a

rename member functions in prog_args class to avoid conflicts with gnulib definitions
author John W. Eaton <jwe@octave.org>
date Fri, 22 Jan 2010 16:44:01 -0500
parents 4c0cdbe0acca
children fc95c80058d8
line wrap: on
line diff
--- a/liboctave/prog-args.h
+++ b/liboctave/prog-args.h
@@ -55,11 +55,11 @@
 
   ~prog_args (void) { }
 
-  int getopt (void);
+  int get_option (void) const;
 
-  const char *optarg (void);
+  const char *option_argument (void) const;
 
-  int optind (void);
+  int option_index (void) const;
 
 private: