blob: 7ddd15624a03dd4449084679a5961d165df124f1 [file] [log] [blame]
Lucas Eckels8a58cac2012-08-06 15:12:54 -07001// id3lib: a C++ library for creating and manipulating id3v1/v2 tags
2// Copyright 2002 Thijmen Klok
3
4// This library is free software; you can redistribute it and/or modify it
5// under the terms of the GNU Library General Public License as published by
6// the Free Software Foundation; either version 2 of the License, or (at your
7// option) any later version.
8//
9// This library is distributed in the hope that it will be useful, but WITHOUT
10// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12// License for more details.
13//
14// You should have received a copy of the GNU Library General Public License
15// along with this library; if not, write to the Free Software Foundation,
16// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18// The id3lib authors encourage improvements and optimisations to be sent to
19// the id3lib coordinator. Please see the README file for details on where to
20// send such submissions. See the AUTHORS file for a list of people who have
21// contributed to id3lib. See the ChangeLog file for a list of changes to
22// id3lib. These files are distributed with id3lib at
23// http://download.sourceforge.net/id3lib/
24
25#ifndef STREAMS_H_DEFINE
26#define STREAMS_H_DEFINE
27#include <fstream>
28#include <iostream>
29#include <iosfwd>
30
31using std::ifstream;
32using std::ofstream;
33using std::fstream;
34
35using std::iostream;
36using std::ostream;
37using std::istream;
38using std::ios;
39
40using std::streamoff;
41
42#endif // STREAMS_H_DEFINE
43