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