1
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
1
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
1
|
20 |
|
21 */ |
|
22 |
383
|
23 #if !defined (octave_help_h) |
|
24 #define octave_help_h 1 |
1
|
25 |
542
|
26 class ostrstream; |
|
27 |
1755
|
28 #include <string> |
|
29 |
|
30 class string_vector; |
|
31 |
3016
|
32 extern string_vector make_name_list (void); |
1
|
33 |
3014
|
34 extern void additional_help_message (ostream&); |
542
|
35 |
2202
|
36 // Name of the info file specified on command line. |
|
37 // (--info-file file) |
|
38 extern string Vinfo_file; |
|
39 |
|
40 // Name of the info reader we'd like to use. |
|
41 // (--info-program program) |
|
42 extern string Vinfo_prog; |
|
43 |
1
|
44 #endif |
|
45 |
|
46 /* |
|
47 ;;; Local Variables: *** |
|
48 ;;; mode: C++ *** |
|
49 ;;; End: *** |
|
50 */ |