diff options
author | Max Kellermann <max@duempel.org> | 2013-09-05 19:08:22 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-05 19:08:22 +0200 |
commit | 8dca38e979bb00f2045bea02f19d407fafd62ca3 (patch) | |
tree | f9a573d8d37ecd99f9c42ac2e65a650dc4a6d8cb /src/tag/Tag.hxx | |
parent | 662bed6a008e3f7115fa4401357cd96ac72829f9 (diff) | |
download | mpd-8dca38e979bb00f2045bea02f19d407fafd62ca3.tar.gz mpd-8dca38e979bb00f2045bea02f19d407fafd62ca3.tar.xz mpd-8dca38e979bb00f2045bea02f19d407fafd62ca3.zip |
Tag: remove the obsolete "bulk" mode
Methods BeginAdd() and EndAdd() have been replaced by class
TagBuilder.
Diffstat (limited to 'src/tag/Tag.hxx')
-rw-r--r-- | src/tag/Tag.hxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/tag/Tag.hxx b/src/tag/Tag.hxx index bfbebe671..731d7cd58 100644 --- a/src/tag/Tag.hxx +++ b/src/tag/Tag.hxx @@ -104,20 +104,6 @@ struct Tag { void Clear(); /** - * Gives an optional hint to the tag library that we will now - * add several tag items; this is used by the library to - * optimize memory allocation. Only one tag may be in this - * state, and this tag must not have any items yet. You must - * call tag_end_add() when you are done. - */ - void BeginAdd(); - - /** - * Finishes the operation started with tag_begin_add(). - */ - void EndAdd(); - - /** * Appends a new tag item. * * @param type the type of the new tag item |