ahead and remove the deprecated crap...
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@360969
283d02a7-25f6-0310-bc7c-
ecb5cbfe19da
d->text = StringList(ByteVectorList::split(d->value, '\0'), String::UTF8);
}
-ByteVector APE::Item::render()
-{
- return const_cast<const Item *>(this)->render();
-}
-
ByteVector APE::Item::render() const
{
ByteVector data;
*/
StringList toStringList() const;
- /*!
- * \deprecated Use the const version.
- */
- ByteVector render();
-
/*!
* Render the item to a ByteVector.
*/
return d->footer.renderHeader() + data + d->footer.renderFooter();
}
-void APE::Tag::parse(const ByteVector &data, uint)
-{
- parse(data);
-}
-
void APE::Tag::parse(const ByteVector &data)
{
uint pos = 0;
class Footer;
-
/*!
* A mapping between a list of item names, or keys, and the associated item.
*
* Reads from the file specified in the constructor.
*/
void read();
- /*!
- * Parses the body of the tag in \a data with \a count items.
- * \deprecated Please use the version that doesn't require an item count.
- */
- void parse(const ByteVector &data, uint count);
/*!
* Parses the body of the tag in \a data.