Octave-Forge - Extra packages for GNU Octave | |
Home · Packages · Developers · Documentation · FAQ · Bugs · Mailing Lists · Links · Code |
00001 /* 00002 00003 Copyright (C) 1994, 1995, 1996, 1997, 2000, 2005, 2007 John W. Eaton 00004 00005 This file is part of Octave. 00006 00007 Octave is free software; you can redistribute it and/or modify it 00008 under the terms of the GNU General Public License as published by the 00009 Free Software Foundation; either version 3 of the License, or (at your 00010 option) any later version. 00011 00012 Octave is distributed in the hope that it will be useful, but WITHOUT 00013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00014 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00015 for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with Octave; see the file COPYING. If not, see 00019 <http://www.gnu.org/licenses/>. 00020 00021 */ 00022 00023 #if !defined (octave_dirfns_h) 00024 #define octave_dirfns_h 1 00025 00026 #include <ctime> 00027 00028 #include <string> 00029 00030 #include "oct-time.h" 00031 00032 extern std::string polite_directory_format (const std::string&); 00033 extern std::string base_pathname (const std::string&); 00034 extern std::string make_absolute (const std::string&, const std::string&); 00035 extern std::string get_working_directory (const std::string&); 00036 00037 // The time we last time we changed directories. 00038 extern octave_time Vlast_chdir_time; 00039 00040 #endif 00041 00042 /* 00043 ;;; Local Variables: *** 00044 ;;; mode: C++ *** 00045 ;;; End: *** 00046 */