1
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2005, 2006, |
|
4 2007 John W. Eaton |
1
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
7016
|
10 Free Software Foundation; either version 3 of the License, or (at your |
|
11 option) any later version. |
1
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
7016
|
19 along with Octave; see the file COPYING. If not, see |
|
20 <http://www.gnu.org/licenses/>. |
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 |
5800
|
36 extern void display_usage_text (std::ostream&, const std::string&); |
|
37 |
3523
|
38 extern void additional_help_message (std::ostream&); |
542
|
39 |
6692
|
40 extern OCTINTERP_API std::string raw_help (const std::string&, bool&); |
6243
|
41 |
2202
|
42 // Name of the info file specified on command line. |
|
43 // (--info-file file) |
3523
|
44 extern std::string Vinfo_file; |
2202
|
45 |
|
46 // Name of the info reader we'd like to use. |
|
47 // (--info-program program) |
5794
|
48 extern std::string Vinfo_program; |
2202
|
49 |
7082
|
50 extern std::string do_which (const std::string& name); |
|
51 |
1
|
52 #endif |
|
53 |
|
54 /* |
|
55 ;;; Local Variables: *** |
|
56 ;;; mode: C++ *** |
|
57 ;;; End: *** |
|
58 */ |