00001 #ifndef META_IOSTREAMS_H 00002 #define META_IOSTREAMS_H 00003 00004 // Includes the different iostream libraries 00005 00006 #include "zipios-config.h" 00007 00008 #include <iostream> 00009 #include <fstream> 00010 00011 #if defined (HAVE_STD_IOSTREAM) && defined (USE_STD_IOSTREAM) 00012 #include <sstream> 00013 #else 00014 #include <strstream> 00015 #endif 00016 00017 #endif 00018 00019 /* 00020 Zipios++ - a small C++ library that provides easy access to .zip files. 00021 Copyright (C) 2000 Thomas Søndergaard 00022 00023 This library is free software; you can redistribute it and/or 00024 modify it under the terms of the GNU Lesser General Public 00025 License as published by the Free Software Foundation; either 00026 version 2 of the License, or (at your option) any later version. 00027 00028 This library is distributed in the hope that it will be useful, 00029 but WITHOUT ANY WARRANTY; without even the implied warranty of 00030 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00031 Lesser General Public License for more details. 00032 00033 You should have received a copy of the GNU Lesser General Public 00034 License along with this library; if not, write to the Free Software 00035 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00036 */