Octave-Forge - Extra packages for GNU Octave | |
Home · Packages · Developers · Documentation · FAQ · Bugs · Mailing Lists · Links · Code |
00001 /* 00002 00003 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2000, 2005, 2006, 2007, 2008 00004 John W. Eaton 00005 00006 This file is part of Octave. 00007 00008 Octave is free software; you can redistribute it and/or modify it 00009 under the terms of the GNU General Public License as published by the 00010 Free Software Foundation; either version 3 of the License, or (at your 00011 option) any later version. 00012 00013 Octave is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00015 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00016 for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with Octave; see the file COPYING. If not, see 00020 <http://www.gnu.org/licenses/>. 00021 00022 */ 00023 00024 #if !defined (octave_octave_hist_h) 00025 #define octave_octave_hist_h 1 00026 00027 #include <string> 00028 00029 #include "cmd-hist.h" 00030 00031 extern void initialize_history (bool read_history_file = false); 00032 00033 // Write timestamp to history file. 00034 extern void octave_history_write_timestamp (void); 00035 00036 // TRUE means input is coming from temporary history file. 00037 extern bool input_from_tmp_history_file; 00038 00039 // TRUE if we are saving history. 00040 extern bool Vsaving_history; 00041 00042 #endif 00043 00044 /* 00045 ;;; Local Variables: *** 00046 ;;; mode: C++ *** 00047 ;;; End: *** 00048 */