Mercurial > hg > octave-jordi
comparison src/toplev.h @ 1355:94697d007075
[project @ 1995-09-05 20:04:15 by jwe]
author | jwe |
---|---|
date | Tue, 05 Sep 1995 20:07:21 +0000 |
parents | 611d403c7f3d |
children | 29f274b42cb1 |
comparison
equal
deleted
inserted
replaced
1354:5b54091471dd | 1355:94697d007075 |
---|---|
22 */ | 22 */ |
23 | 23 |
24 #if !defined (octave_octave_h) | 24 #if !defined (octave_octave_h) |
25 #define octave_octave_h 1 | 25 #define octave_octave_h 1 |
26 | 26 |
27 #include <stdio.h> | 27 #include <cstdio> |
28 | 28 |
29 class tree_statement_list; | 29 class tree_statement_list; |
30 class tree_function; | 30 class tree_function; |
31 class Octave_str_obj; | |
31 | 32 |
32 // Tell g++ that clean_up_and_exit doesn't return; | 33 // Tell g++ that clean_up_and_exit doesn't return; |
33 | 34 |
34 #ifdef __GNUG__ | 35 #ifdef __GNUG__ |
35 typedef void v_fcn_i (int); | 36 typedef void v_fcn_i (int); |
87 extern tree_function *curr_function; | 88 extern tree_function *curr_function; |
88 | 89 |
89 // Nonzero means input is coming from startup file. | 90 // Nonzero means input is coming from startup file. |
90 extern int input_from_startup_file; | 91 extern int input_from_startup_file; |
91 | 92 |
93 // The command-line options. | |
94 extern Octave_str_obj octave_argv; | |
95 | |
92 #endif | 96 #endif |
93 | 97 |
94 /* | 98 /* |
95 ;;; Local Variables: *** | 99 ;;; Local Variables: *** |
96 ;;; mode: C++ *** | 100 ;;; mode: C++ *** |