~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Base/zipios/fileentry.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2010-01-11 08:48:33 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100111084833-4g9vgdqbkw8u34zb
Tags: 0.9.2646.5-1
* New upstream version (closes: #561696).
* Added swig to Build-Depends (closes: #563523, #563772).
* Removed python-opencv from Build-Depends and Recommends (closes: #560768).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#include "zipios-config.h"
3
 
 
4
 
#include "meta-iostreams.h"
5
 
#include <string>
6
 
 
7
 
#include "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
 
 
18
 
/** \file
19
 
    Implementation of FileEntry.
20
 
*/
21
 
 
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
 
*/