Mercurial > hg > octave-nkf
annotate src/help.h @ 10809:85cbd239fce2
try a better status bar for fltk backend
author | Shai Ayal <shaiay@users.sourceforge.net> |
---|---|
date | Tue, 20 Jul 2010 19:31:17 +0300 |
parents | cd96d29c5efa |
children | fd0a3ac60b0e |
rev | line source |
---|---|
1 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2005, 2006, |
8920 | 4 2007, 2009 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 |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
27 #include <iosfwd> |
1755 | 28 #include <string> |
29 | |
30 class string_vector; | |
31 | |
3016 | 32 extern string_vector make_name_list (void); |
1 | 33 |
6692 | 34 extern OCTINTERP_API std::string raw_help (const std::string&, bool&); |
6243 | 35 |
8861 | 36 // Name of the doc cache file specified on the command line. |
37 // (--doc-cache-file file) | |
38 extern std::string Vdoc_cache_file; | |
39 | |
2202 | 40 // Name of the info file specified on command line. |
41 // (--info-file file) | |
3523 | 42 extern std::string Vinfo_file; |
2202 | 43 |
44 // Name of the info reader we'd like to use. | |
45 // (--info-program program) | |
5794 | 46 extern std::string Vinfo_program; |
2202 | 47 |
7082 | 48 extern std::string do_which (const std::string& name); |
49 | |
1 | 50 #endif |