]> Creatis software - clitk.git/blob - utilities/gengetopt/fileutils.h
Debug RTStruct conversion with empty struc
[clitk.git] / utilities / gengetopt / fileutils.h
1 //
2 // C++ Interface: fileutils
3 //
4 // Description:
5 //
6 //
7 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #ifndef FILEUTILS_H
14 #define FILEUTILS_H
15
16 #include <fstream>
17
18 using std::ofstream;
19
20 char *create_filename (char *name, char *ext);
21 ofstream *open_fstream (const char *filename);
22
23 #endif