These functions are now virtual, so the default implementation from TagLib::File can be used

This commit is contained in:
Lukáš Lalinský
2012-11-04 09:44:51 +01:00
parent 27a078fe9b
commit 8599c1bd38
8 changed files with 0 additions and 87 deletions

View File

@ -382,16 +382,6 @@ Mod::Tag *XM::File::tag() const
return &d->tag;
}
PropertyMap XM::File::properties() const
{
return d->tag.properties();
}
PropertyMap XM::File::setProperties(const PropertyMap &properties)
{
return d->tag.setProperties(properties);
}
XM::Properties *XM::File::audioProperties() const
{
return &d->properties;

View File

@ -63,18 +63,6 @@ namespace TagLib {
Mod::Tag *tag() const;
/*!
* Implements the unified property interface -- export function.
* Forwards to Mod::Tag::properties().
*/
PropertyMap properties() const;
/*!
* Implements the unified property interface -- import function.
* Forwards to Mod::Tag::setProperties().
*/
PropertyMap setProperties(const PropertyMap &);
/*!
* Returns the XM::Properties for this file. If no audio properties
* were read then this will return a null pointer.