]> Creatis software - clitk.git/blobdiff - utilities/gengetopt/fileutils.h
Sync gengetopt cmake files with rtk
[clitk.git] / utilities / gengetopt / fileutils.h
diff --git a/utilities/gengetopt/fileutils.h b/utilities/gengetopt/fileutils.h
new file mode 100644 (file)
index 0000000..013b7a6
--- /dev/null
@@ -0,0 +1,23 @@
+//
+// C++ Interface: fileutils
+//
+// Description:
+//
+//
+// Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#ifndef FILEUTILS_H
+#define FILEUTILS_H
+
+#include <fstream>
+
+using std::ofstream;
+
+char *create_filename (char *name, char *ext);
+ofstream *open_fstream (const char *filename);
+
+#endif