aboutsummaryrefslogtreecommitdiff
path: root/src/FlexIO.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FlexIO.hh')
-rw-r--r--src/FlexIO.hh27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/FlexIO.hh b/src/FlexIO.hh
new file mode 100644
index 0000000..233188a
--- /dev/null
+++ b/src/FlexIO.hh
@@ -0,0 +1,27 @@
+/////////////////////////////////////////////////////////////////
+//
+// $Id$
+//
+// $Log$
+// Revision 1.1 2000/04/28 08:51:16 werner
+// Wrapper function for runtime detection of IEEEIO,HDF5,HDF4 format.
+// Takes a filename and returns an IObase* object.
+// For compilation, the flags -DWITH_HDF5 and -DWITH_HDF4 have to be set
+// to enable HDF{4|5} functionality, otherwise just IEEEIO is available.
+// These flags have to be set in the makefile, depending on wether the HDF{4|5}
+// libraries are available at compilation time.
+//
+// Created 2000/04/28 10:28:21 werner
+// Initial version
+//
+//
+/////////////////////////////////////////////////////////////////
+#ifndef __FLEXIO_HPP
+#define __FLEXIO_HPP "Created 28.04.2000 10:28:21 by werner"
+
+#include <IO.hh>
+
+IObase* FlexIOopen(const char*filename, IObase::AccessMode = IObase::Read);
+
+
+#endif /* __FLEXIO_HPP */