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 |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
1
|
21 |
|
22 */ |
|
23 |
383
|
24 #if !defined (octave_help_h) |
|
25 #define octave_help_h 1 |
1
|
26 |
3503
|
27 #include <iostream> |
1755
|
28 #include <string> |
|
29 |
|
30 class string_vector; |
|
31 |
3016
|
32 extern string_vector make_name_list (void); |
1
|
33 |
3523
|
34 extern void display_help_text (std::ostream&, const std::string&); |
3330
|
35 |
3523
|
36 extern void additional_help_message (std::ostream&); |
542
|
37 |
2202
|
38 // Name of the info file specified on command line. |
|
39 // (--info-file file) |
3523
|
40 extern std::string Vinfo_file; |
2202
|
41 |
|
42 // Name of the info reader we'd like to use. |
|
43 // (--info-program program) |
3523
|
44 extern std::string Vinfo_prog; |
2202
|
45 |
1
|
46 #endif |
|
47 |
|
48 /* |
|
49 ;;; Local Variables: *** |
|
50 ;;; mode: C++ *** |
|
51 ;;; End: *** |
|
52 */ |