Mercurial > hg > octave-lyh
annotate src/oct-hist.h @ 9309:fb8b8589dd46
Expand documentation for 'complex' function
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Sat, 06 Jun 2009 22:01:10 -0700 |
parents | eb63fbe60fab |
children | cd96d29c5efa |
rev | line source |
---|---|
1 | 1 /* |
2 | |
8920 | 3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2000, 2005, 2006, 2007, 2008 |
7017 | 4 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_octave_hist_h) |
25 #define octave_octave_hist_h 1 | |
1 | 26 |
1755 | 27 #include <string> |
28 | |
1799 | 29 #include "cmd-hist.h" |
30 | |
8273
2c1ba965b486
skip reading history file with --no-history option
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
31 extern void initialize_history (bool read_history_file = false); |
5794 | 32 |
5305 | 33 // Write timestamp to history file. |
34 extern void octave_history_write_timestamp (void); | |
1799 | 35 |
3018 | 36 // TRUE means input is coming from temporary history file. |
37 extern bool input_from_tmp_history_file; | |
168 | 38 |
3016 | 39 // TRUE if we are saving history. |
3018 | 40 extern bool Vsaving_history; |
3016 | 41 |
1 | 42 #endif |
43 | |
44 /* | |
45 ;;; Local Variables: *** | |
46 ;;; mode: C++ *** | |
47 ;;; End: *** | |
48 */ |