/*************************************************************************** io.hh - I/O routines ------------------- begin : Sun Jun 11 2000 copyright : (C) 2000 by Erik Schnetter email : schnetter@astro.psu.edu $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/Attic/io.hh,v 1.2 2002/05/05 22:17:03 schnetter Exp $ ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef IO_HH #define IO_HH #include #include #include #include #include #include #include #include "data.hh" #include "defs.hh" template class io { enum iotype { ieee, hdf, h5 }; // template // void write_ascii (const data& d, const string name, // const vect& dirs); // static void write_ASCII_1D (const data& d, const string name, // const int dir); // static void write_ASCII_2D (const data& d, const string name, // const int dir1, const int dir2); // static void write_ASCII_3D (const data& d, const string name); // static void write_FlexIO (const data& d, const string name, // const iotype iot); }; #endif // IO_HH