1
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2004, 2005, 2006, 2007 |
|
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 |
1453
|
24 // Written by John C. Campbell <jcc@bevo.che.wisc.edu> |
1
|
25 |
1425
|
26 #if !defined (octave_file_io_h) |
|
27 #define octave_file_io_h 1 |
1
|
28 |
6109
|
29 extern OCTINTERP_API void initialize_file_io (void); |
1
|
30 |
6109
|
31 extern OCTINTERP_API void close_files (void); |
1
|
32 |
6109
|
33 extern OCTINTERP_API void mark_for_deletion (const std::string&); |
5102
|
34 |
6109
|
35 extern OCTINTERP_API void cleanup_tmp_files (void); |
5102
|
36 |
1
|
37 #endif |