Mercurial > hg > octave-nkf
annotate libinterp/corefcn/help.h @ 18189:d638db6d045c stable
doc: Note that dbstop can be used with class methods as well (bug #40958).
* debug.txi: Note that dbstop can be used with class methods as well
(bug #40958).
author | Rik <rik@octave.org> |
---|---|
date | Wed, 01 Jan 2014 18:24:55 -0800 |
parents | d63878346099 |
children | 4197fc428c7d |
rev | line source |
---|---|
1 | 1 /* |
2 | |
17744
d63878346099
maint: Update copyright notices for release.
John W. Eaton <jwe@octave.org>
parents:
16892
diff
changeset
|
3 Copyright (C) 1993-2013 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
1 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
1 | 20 |
21 */ | |
22 | |
383 | 23 #if !defined (octave_help_h) |
24 #define octave_help_h 1 | |
1 | 25 |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
26 #include <iosfwd> |
1755 | 27 #include <string> |
28 | |
29 class string_vector; | |
30 | |
3016 | 31 extern string_vector make_name_list (void); |
1 | 32 |
6692 | 33 extern OCTINTERP_API std::string raw_help (const std::string&, bool&); |
6243 | 34 |
15470
bf0857c789f4
initialize docstrings for built-in functions from file
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
35 extern OCTINTERP_API void install_built_in_docstrings (void); |
bf0857c789f4
initialize docstrings for built-in functions from file
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
36 |
8861 | 37 // Name of the doc cache file specified on the command line. |
38 // (--doc-cache-file file) | |
15598
bb7cbef712f1
Add missing OCTINTTERP_API decorator.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15470
diff
changeset
|
39 extern OCTINTERP_API std::string Vdoc_cache_file; |
8861 | 40 |
14614
4e9dc46d4125
handle texinfo macros consistently in help system and manual
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
41 // Name of the file containing local Texinfo macros that are prepended |
4e9dc46d4125
handle texinfo macros consistently in help system and manual
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
42 // to doc strings before processing. |
4e9dc46d4125
handle texinfo macros consistently in help system and manual
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
43 // (--texi-macros-file) |
15598
bb7cbef712f1
Add missing OCTINTTERP_API decorator.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15470
diff
changeset
|
44 extern OCTINTERP_API std::string Vtexi_macros_file; |
14614
4e9dc46d4125
handle texinfo macros consistently in help system and manual
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
45 |
2202 | 46 // Name of the info file specified on command line. |
47 // (--info-file file) | |
15598
bb7cbef712f1
Add missing OCTINTTERP_API decorator.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15470
diff
changeset
|
48 extern OCTINTERP_API std::string Vinfo_file; |
2202 | 49 |
50 // Name of the info reader we'd like to use. | |
51 // (--info-program program) | |
15598
bb7cbef712f1
Add missing OCTINTTERP_API decorator.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15470
diff
changeset
|
52 extern OCTINTERP_API std::string Vinfo_program; |
2202 | 53 |
15598
bb7cbef712f1
Add missing OCTINTTERP_API decorator.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15470
diff
changeset
|
54 extern OCTINTERP_API std::string do_which (const std::string& name); |
7082 | 55 |
1 | 56 #endif |