This commit is contained in:
Mathias Panzenböck 2011-06-23 17:40:36 +02:00
commit e810f2f61f
3 changed files with 8 additions and 2 deletions

View File

@ -23,8 +23,6 @@
#include "config.h"
#endif
#include "tag_c.h"
#include <stdlib.h>
#include <fileref.h>
#include <tfile.h>
@ -42,6 +40,8 @@
#include <string.h>
#include <id3v2framefactory.h>
#include "tag_c.h"
using namespace TagLib;
static List<char *> strings;

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();