From 7448bb353b42356779f4d640f73c25cd4a893aeb Mon Sep 17 00:00:00 2001 From: Wolfgang Plaschg Date: Mon, 20 Jun 2011 03:08:24 +0200 Subject: Include of "tag_c.h" after system libraries. --- bindings/c/tag_c.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/c/tag_c.cpp b/bindings/c/tag_c.cpp index 238af078..18a7861c 100644 --- a/bindings/c/tag_c.cpp +++ b/bindings/c/tag_c.cpp @@ -23,8 +23,6 @@ #include "config.h" #endif -#include "tag_c.h" - #include #include #include @@ -42,6 +40,8 @@ #include #include +#include "tag_c.h" + using namespace TagLib; static List strings; -- cgit v1.2.3 From b2517aa4a0cb119457e8dc02a4bf973643f1f4f5 Mon Sep 17 00:00:00 2001 From: Anton Sergunov Date: Tue, 21 Jun 2011 00:54:39 +0700 Subject: default constructor MP4::Tag::Tag() --- taglib/mp4/mp4tag.cpp | 5 +++++ taglib/mp4/mp4tag.h | 1 + 2 files changed, 6 insertions(+) diff --git a/taglib/mp4/mp4tag.cpp b/taglib/mp4/mp4tag.cpp index d7933dbb..30cb1028 100644 --- a/taglib/mp4/mp4tag.cpp +++ b/taglib/mp4/mp4tag.cpp @@ -47,6 +47,11 @@ public: ItemListMap items; }; +MP4::Tag::Tag() +{ + d = new TagPrivate; +} + MP4::Tag::Tag(TagLib::File *file, MP4::Atoms *atoms) { d = new TagPrivate; diff --git a/taglib/mp4/mp4tag.h b/taglib/mp4/mp4tag.h index 3e6d667f..2c8b2df8 100644 --- a/taglib/mp4/mp4tag.h +++ b/taglib/mp4/mp4tag.h @@ -44,6 +44,7 @@ namespace TagLib { class TAGLIB_EXPORT Tag: public TagLib::Tag { public: + Tag(); Tag(TagLib::File *file, Atoms *atoms); ~Tag(); bool save(); -- cgit v1.2.3