mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
default constructor MP4::Tag::Tag()
This commit is contained in:
parent
7448bb353b
commit
b2517aa4a0
@ -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;
|
||||
|
@ -44,6 +44,7 @@ namespace TagLib {
|
||||
class TAGLIB_EXPORT Tag: public TagLib::Tag
|
||||
{
|
||||
public:
|
||||
Tag();
|
||||
Tag(TagLib::File *file, Atoms *atoms);
|
||||
~Tag();
|
||||
bool save();
|
||||
|
Loading…
x
Reference in New Issue
Block a user