Zipios++
fileentry.cpp
Go to the documentation of this file.
1 
2 #include "zipios++/zipios-config.h"
3 
4 #include "zipios++/meta-iostreams.h"
5 #include <string>
6 
7 #include "zipios++/fileentry.h"
8 
9 namespace zipios {
10 
11 ostream &operator<< ( ostream &os, const FileEntry &entry ) {
12  os << entry.toString() ;
13  return os ;
14 }
15 
16 } // namespace
17 
22 /*
23  Zipios++ - a small C++ library that provides easy access to .zip files.
24  Copyright (C) 2000 Thomas Søndergaard
25 
26  This library is free software; you can redistribute it and/or
27  modify it under the terms of the GNU Lesser General Public
28  License as published by the Free Software Foundation; either
29  version 2 of the License, or (at your option) any later version.
30 
31  This library is distributed in the hope that it will be useful,
32  but WITHOUT ANY WARRANTY; without even the implied warranty of
33  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34  Lesser General Public License for more details.
35 
36  You should have received a copy of the GNU Lesser General Public
37  License along with this library; if not, write to the Free Software
38  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
39 */