default constructor MP4::Tag::Tag()

This commit is contained in:
Anton Sergunov 2011-06-21 00:54:39 +07:00
parent 7448bb353b
commit b2517aa4a0
2 changed files with 6 additions and 0 deletions

View File

@ -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;

View File

@ -44,6 +44,7 @@ namespace TagLib {
class TAGLIB_EXPORT Tag: public TagLib::Tag
{
public:
Tag();
Tag(TagLib::File *file, Atoms *atoms);
~Tag();
bool save();