Fix some includes in taglib

This commit is contained in:
Jonas Kvinge 2020-06-27 00:06:02 +02:00
parent 5f71a558b9
commit 26586fb9ef
10 changed files with 29 additions and 28 deletions

View File

@ -23,7 +23,7 @@
* http://www.mozilla.org/MPL/ * * http://www.mozilla.org/MPL/ *
***************************************************************************/ ***************************************************************************/
#include <tstringlist.h> #include "tstringlist.h"
#include "audioproperties.h" #include "audioproperties.h"

View File

@ -29,10 +29,10 @@
#include <memory> #include <memory>
#include <tfile.h> #include "tfile.h"
#include <tfilestream.h> #include "tfilestream.h"
#include <tstring.h> #include "tstring.h"
#include <tdebug.h> #include "tdebug.h"
#include "fileref.h" #include "fileref.h"
#include "asffile.h" #include "asffile.h"

View File

@ -29,7 +29,7 @@
#include "tpropertymap.h" #include "tpropertymap.h"
#include "tagutils.h" #include "tagutils.h"
#include <xiphcomment.h> #include "xiphcomment.h"
#include "oggflacfile.h" #include "oggflacfile.h"
using namespace Strawberry_TagLib::TagLib; using namespace Strawberry_TagLib::TagLib;

View File

@ -30,7 +30,7 @@
#include "tstring.h" #include "tstring.h"
#include "tdebug.h" #include "tdebug.h"
#include <oggpageheader.h> #include "oggpageheader.h"
#include "opusproperties.h" #include "opusproperties.h"
#include "opusfile.h" #include "opusfile.h"

View File

@ -23,8 +23,8 @@
* http://www.mozilla.org/MPL/ * * http://www.mozilla.org/MPL/ *
***************************************************************************/ ***************************************************************************/
#include <tbytevector.h> #include "tbytevector.h"
#include <tdebug.h> #include "tdebug.h"
#include "flacpicture.h" #include "flacpicture.h"
#include "xiphcomment.h" #include "xiphcomment.h"

View File

@ -25,10 +25,10 @@
#include <memory> #include <memory>
#include <tagunion.h> #include "tagunion.h"
#include <tstringlist.h> #include "tstringlist.h"
#include <tpropertymap.h> #include "tpropertymap.h"
#include <tpicturemap.h> #include "tpicturemap.h"
#define stringUnion(method) \ #define stringUnion(method) \
for (size_t j = 0; j < COUNT; ++j) { \ for (size_t j = 0; j < COUNT; ++j) { \

View File

@ -30,7 +30,7 @@
#ifndef DO_NOT_DOCUMENT // tell Doxygen not to document this header #ifndef DO_NOT_DOCUMENT // tell Doxygen not to document this header
# include <tbytevector.h> #include "tbytevector.h"
namespace Strawberry_TagLib { namespace Strawberry_TagLib {
namespace TagLib { namespace TagLib {

View File

@ -26,6 +26,7 @@
#include <cstdlib> #include <cstdlib>
#include <cstdio> #include <cstdio>
#include <cstring> #include <cstring>
#include <cstddef>
#include "tbytevectorstream.h" #include "tbytevectorstream.h"
#include "tstring.h" #include "tstring.h"

View File

@ -32,20 +32,20 @@
#include "taglib-config.h" #include "taglib-config.h"
# if defined(HAVE_MSC_BYTESWAP) #if defined(HAVE_MSC_BYTESWAP)
# include <cstdlib> # include <cstdlib>
# elif defined(HAVE_GLIBC_BYTESWAP) #elif defined(HAVE_GLIBC_BYTESWAP)
# include <byteswap.h> # include <byteswap.h>
# elif defined(HAVE_MAC_BYTESWAP) #elif defined(HAVE_MAC_BYTESWAP)
# include <libkern/OSByteOrder.h> # include <libkern/OSByteOrder.h>
# elif defined(HAVE_OPENBSD_BYTESWAP) #elif defined(HAVE_OPENBSD_BYTESWAP)
# include <sys/endian.h> # include <sys/endian.h>
# endif #endif
# include <tstring.h> #include "tstring.h"
# include <cstdio> #include <cstdio>
# include <cstdarg> #include <cstdarg>
# include <cstring> #include <cstring>
namespace Strawberry_TagLib { namespace Strawberry_TagLib {
namespace TagLib { namespace TagLib {

View File

@ -26,7 +26,7 @@
#ifndef TAGLIB_TZLIB_H #ifndef TAGLIB_TZLIB_H
#define TAGLIB_TZLIB_H #define TAGLIB_TZLIB_H
#include <tbytevector.h> #include "tbytevector.h"
// THIS FILE IS NOT A PART OF THE TAGLIB API // THIS FILE IS NOT A PART OF THE TAGLIB API