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

« back to all changes in this revision

Viewing changes to src/Base/zipios/meta-iostreams.h

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-07-16 18:37:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090716183741-oww9kcxqrk991i1n
Tags: upstream-0.8.2237
Import upstream version 0.8.2237

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef META_IOSTREAMS_H
 
2
#define META_IOSTREAMS_H
 
3
 
 
4
// Includes the different iostream libraries
 
5
 
 
6
#include "zipios-config.h"
 
7
 
 
8
#include <iostream>
 
9
#include <fstream>
 
10
 
 
11
#if defined (HAVE_STD_IOSTREAM) && defined (USE_STD_IOSTREAM)
 
12
#include <sstream>
 
13
#else
 
14
#include <strstream>
 
15
#endif
 
16
 
 
17
#endif
 
18
 
 
19
/*
 
20
  Zipios++ - a small C++ library that provides easy access to .zip files.
 
21
  Copyright (C) 2000  Thomas S�ndergaard
 
22
  
 
23
  This library is free software; you can redistribute it and/or
 
24
  modify it under the terms of the GNU Lesser General Public
 
25
  License as published by the Free Software Foundation; either
 
26
  version 2 of the License, or (at your option) any later version.
 
27
  
 
28
  This library is distributed in the hope that it will be useful,
 
29
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
30
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
31
  Lesser General Public License for more details.
 
32
  
 
33
  You should have received a copy of the GNU Lesser General Public
 
34
  License along with this library; if not, write to the Free Software
 
35
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 
36
*/