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