|
id3lib 3.8.3
|
00001 // id3lib: a C++ library for creating and manipulating id3v1/v2 tags 00002 // Copyright 2002 Thijmen Klok 00003 00004 // This library is free software; you can redistribute it and/or modify it 00005 // under the terms of the GNU Library General Public License as published by 00006 // the Free Software Foundation; either version 2 of the License, or (at your 00007 // option) any later version. 00008 // 00009 // This library is distributed in the hope that it will be useful, but WITHOUT 00010 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00011 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00012 // License for more details. 00013 // 00014 // You should have received a copy of the GNU Library General Public License 00015 // along with this library; if not, write to the Free Software Foundation, 00016 // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 00018 // The id3lib authors encourage improvements and optimisations to be sent to 00019 // the id3lib coordinator. Please see the README file for details on where to 00020 // send such submissions. See the AUTHORS file for a list of people who have 00021 // contributed to id3lib. See the ChangeLog file for a list of changes to 00022 // id3lib. These files are distributed with id3lib at 00023 // http://download.sourceforge.net/id3lib/ 00024 00025 #ifndef STREAMS_H_DEFINE 00026 #define STREAMS_H_DEFINE 00027 #include <fstream> 00028 #include <iostream> 00029 #include <iosfwd> 00030 00031 using std::ifstream; 00032 using std::ofstream; 00033 using std::fstream; 00034 00035 using std::iostream; 00036 using std::ostream; 00037 using std::istream; 00038 using std::ios; 00039 00040 using std::streamoff; 00041 00042 #endif // STREAMS_H_DEFINE 00043
1.7.3