From 0586b68b7d13acb768950fa330de40c91517785a Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 11 Sep 2006 22:42:50 +0000 Subject: [PATCH] fix includes git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@583286 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ape/apefooter.h | 2 +- ape/apeitem.h | 6 +++--- ape/apetag.h | 8 ++++---- flac/flacfile.h | 2 +- flac/flacproperties.h | 2 +- mpeg/id3v1/id3v1genres.h | 4 ++-- mpeg/id3v1/id3v1tag.h | 4 ++-- mpeg/id3v2/id3v2extendedheader.h | 4 ++-- mpeg/id3v2/id3v2footer.h | 2 +- mpeg/id3v2/id3v2frame.h | 4 ++-- mpeg/id3v2/id3v2framefactory.h | 2 +- mpeg/id3v2/id3v2header.h | 2 +- mpeg/id3v2/id3v2synchdata.h | 4 ++-- mpeg/id3v2/id3v2tag.h | 10 +++++----- mpeg/mpegfile.h | 2 +- mpeg/mpegproperties.h | 2 +- ogg/flac/oggflacfile.h | 6 +++--- ogg/oggfile.h | 4 ++-- ogg/oggpage.h | 2 +- ogg/oggpageheader.h | 4 ++-- ogg/vorbis/vorbisfile.h | 4 ++-- ogg/vorbis/vorbisproperties.h | 2 +- ogg/xiphcomment.h | 12 ++++++------ tag.h | 2 +- 24 files changed, 48 insertions(+), 48 deletions(-) diff --git a/ape/apefooter.h b/ape/apefooter.h index b3359d13..e6555d42 100644 --- a/ape/apefooter.h +++ b/ape/apefooter.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_APEFOOTER_H #define TAGLIB_APEFOOTER_H -#include +#include "tbytevector.h" namespace TagLib { diff --git a/ape/apeitem.h b/ape/apeitem.h index dd9fa298..b0b695d5 100644 --- a/ape/apeitem.h +++ b/ape/apeitem.h @@ -22,9 +22,9 @@ #ifndef TAGLIB_APEITEM_H #define TAGLIB_APEITEM_H -#include -#include -#include +#include "tbytevector.h" +#include "tstring.h" +#include "tstringlist.h" namespace TagLib { diff --git a/ape/apetag.h b/ape/apetag.h index b06f1e25..20282bf5 100644 --- a/ape/apetag.h +++ b/ape/apetag.h @@ -22,10 +22,10 @@ #ifndef TAGLIB_APETAG_H #define TAGLIB_APETAG_H -#include -#include -#include -#include +#include "tag.h" +#include "tbytevector.h" +#include "tmap.h" +#include "tstring.h" #include "apeitem.h" diff --git a/flac/flacfile.h b/flac/flacfile.h index 9fef9039..67f20ee7 100644 --- a/flac/flacfile.h +++ b/flac/flacfile.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_FLACFILE_H #define TAGLIB_FLACFILE_H -#include +#include "tfile.h" #include "flacproperties.h" diff --git a/flac/flacproperties.h b/flac/flacproperties.h index c1d1a4fa..d3ae073b 100644 --- a/flac/flacproperties.h +++ b/flac/flacproperties.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_FLACPROPERTIES_H #define TAGLIB_FLACPROPERTIES_H -#include +#include "audioproperties.h" namespace TagLib { diff --git a/mpeg/id3v1/id3v1genres.h b/mpeg/id3v1/id3v1genres.h index 97caee8a..7846c895 100644 --- a/mpeg/id3v1/id3v1genres.h +++ b/mpeg/id3v1/id3v1genres.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_ID3V1GENRE_H #define TAGLIB_ID3V1GENRE_H -#include -#include +#include "tmap.h" +#include "tstringlist.h" namespace TagLib { namespace ID3v1 { diff --git a/mpeg/id3v1/id3v1tag.h b/mpeg/id3v1/id3v1tag.h index 37b7c5a0..0b238bdd 100644 --- a/mpeg/id3v1/id3v1tag.h +++ b/mpeg/id3v1/id3v1tag.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_ID3V1TAG_H #define TAGLIB_ID3V1TAG_H -#include -#include +#include "tag.h" +#include "tbytevector.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2extendedheader.h b/mpeg/id3v2/id3v2extendedheader.h index 8ca0dff9..a690718f 100644 --- a/mpeg/id3v2/id3v2extendedheader.h +++ b/mpeg/id3v2/id3v2extendedheader.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_ID3V2EXTENDEDHEADER_H #define TAGLIB_ID3V2EXTENDEDHEADER_H -#include -#include +#include "tbytevector.h" +#include "taglib.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2footer.h b/mpeg/id3v2/id3v2footer.h index 7a925f32..ba6235bc 100644 --- a/mpeg/id3v2/id3v2footer.h +++ b/mpeg/id3v2/id3v2footer.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_ID3V2FOOTER_H #define TAGLIB_ID3V2FOOTER_H -#include +#include "tbytevector.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2frame.h b/mpeg/id3v2/id3v2frame.h index 88607715..7d9bffcc 100644 --- a/mpeg/id3v2/id3v2frame.h +++ b/mpeg/id3v2/id3v2frame.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_ID3V2FRAME_H #define TAGLIB_ID3V2FRAME_H -#include -#include +#include "tstring.h" +#include "tbytevector.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2framefactory.h b/mpeg/id3v2/id3v2framefactory.h index a002d961..0980ac80 100644 --- a/mpeg/id3v2/id3v2framefactory.h +++ b/mpeg/id3v2/id3v2framefactory.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_ID3V2FRAMEFACTORY_H #define TAGLIB_ID3V2FRAMEFACTORY_H -#include +#include "tbytevector.h" #include "id3v2frame.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2header.h b/mpeg/id3v2/id3v2header.h index cf68c975..d8799888 100644 --- a/mpeg/id3v2/id3v2header.h +++ b/mpeg/id3v2/id3v2header.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_ID3V2HEADER_H #define TAGLIB_ID3V2HEADER_H -#include +#include "tbytevector.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2synchdata.h b/mpeg/id3v2/id3v2synchdata.h index 80a462f1..4e2b458c 100644 --- a/mpeg/id3v2/id3v2synchdata.h +++ b/mpeg/id3v2/id3v2synchdata.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_ID3V2SYNCHDATA_H #define TAGLIB_ID3V2SYNCHDATA_H -#include -#include +#include "tbytevector.h" +#include "taglib.h" namespace TagLib { diff --git a/mpeg/id3v2/id3v2tag.h b/mpeg/id3v2/id3v2tag.h index 8986b90c..8e841112 100644 --- a/mpeg/id3v2/id3v2tag.h +++ b/mpeg/id3v2/id3v2tag.h @@ -22,11 +22,11 @@ #ifndef TAGLIB_ID3V2TAG_H #define TAGLIB_ID3V2TAG_H -#include -#include -#include -#include -#include +#include "tag.h" +#include "tbytevector.h" +#include "tstring.h" +#include "tlist.h" +#include "tmap.h" #include "id3v2framefactory.h" diff --git a/mpeg/mpegfile.h b/mpeg/mpegfile.h index dca5ae12..f8c33147 100644 --- a/mpeg/mpegfile.h +++ b/mpeg/mpegfile.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_MPEGFILE_H #define TAGLIB_MPEGFILE_H -#include +#include "tfile.h" #include "mpegproperties.h" diff --git a/mpeg/mpegproperties.h b/mpeg/mpegproperties.h index f50066cc..a2d4e4cb 100644 --- a/mpeg/mpegproperties.h +++ b/mpeg/mpegproperties.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_MPEGPROPERTIES_H #define TAGLIB_MPEGPROPERTIES_H -#include +#include "audioproperties.h" #include "mpegheader.h" diff --git a/ogg/flac/oggflacfile.h b/ogg/flac/oggflacfile.h index 94ec5750..f1a7452d 100644 --- a/ogg/flac/oggflacfile.h +++ b/ogg/flac/oggflacfile.h @@ -22,10 +22,10 @@ #ifndef TAGLIB_OGGFLACFILE_H #define TAGLIB_OGGFLACFILE_H -#include -#include +#include "oggfile.h" +#include "xiphcomment.h" -#include +#include "flacproperties.h" namespace TagLib { diff --git a/ogg/oggfile.h b/ogg/oggfile.h index 0ca59dd9..dc7d2248 100644 --- a/ogg/oggfile.h +++ b/ogg/oggfile.h @@ -19,8 +19,8 @@ * USA * ***************************************************************************/ -#include -#include +#include "tfile.h" +#include "tbytevectorlist.h" #ifndef TAGLIB_OGGFILE_H #define TAGLIB_OGGFILE_H diff --git a/ogg/oggpage.h b/ogg/oggpage.h index c4b0792a..a95b54c0 100644 --- a/ogg/oggpage.h +++ b/ogg/oggpage.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_OGGPAGE_H #define TAGLIB_OGGPAGE_H -#include +#include "tbytevectorlist.h" namespace TagLib { diff --git a/ogg/oggpageheader.h b/ogg/oggpageheader.h index 45f22a83..2a994d16 100644 --- a/ogg/oggpageheader.h +++ b/ogg/oggpageheader.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_OGGPAGEHEADER_H #define TAGLIB_OGGPAGEHEADER_H -#include -#include +#include "tlist.h" +#include "tbytevector.h" namespace TagLib { diff --git a/ogg/vorbis/vorbisfile.h b/ogg/vorbis/vorbisfile.h index f85e4bee..967ae766 100644 --- a/ogg/vorbis/vorbisfile.h +++ b/ogg/vorbis/vorbisfile.h @@ -22,8 +22,8 @@ #ifndef TAGLIB_VORBISFILE_H #define TAGLIB_VORBISFILE_H -#include -#include +#include "oggfile.h" +#include "xiphcomment.h" #include "vorbisproperties.h" diff --git a/ogg/vorbis/vorbisproperties.h b/ogg/vorbis/vorbisproperties.h index 01dffed9..a4056871 100644 --- a/ogg/vorbis/vorbisproperties.h +++ b/ogg/vorbis/vorbisproperties.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_VORBISPROPERTIES_H #define TAGLIB_VORBISPROPERTIES_H -#include +#include "audioproperties.h" namespace TagLib { diff --git a/ogg/xiphcomment.h b/ogg/xiphcomment.h index b94b565d..c172ea18 100644 --- a/ogg/xiphcomment.h +++ b/ogg/xiphcomment.h @@ -22,12 +22,12 @@ #ifndef TAGLIB_VORBISCOMMENT_H #define TAGLIB_VORBISCOMMENT_H -#include -#include -#include -#include -#include -#include +#include "tag.h" +#include "tlist.h" +#include "tmap.h" +#include "tstring.h" +#include "tstringlist.h" +#include "tbytevector.h" namespace TagLib { diff --git a/tag.h b/tag.h index 5c9d5a6d..ae5f7c9c 100644 --- a/tag.h +++ b/tag.h @@ -22,7 +22,7 @@ #ifndef TAGLIB_TAG_H #define TAGLIB_TAG_H -#include +#include namespace TagLib {