aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/Tag.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-09-05 18:10:10 +0200
committerMax Kellermann <max@duempel.org>2013-09-05 18:27:31 +0200
commit6239dd96f2250c75e5d223a99e9bb7efa736daa3 (patch)
treee949582aea4d4381c465077fbd9ed7ba248187cf /src/tag/Tag.hxx
parent57a4700fb95ba29cb3817b540d3ac4a3dcde2253 (diff)
downloadmpd-6239dd96f2250c75e5d223a99e9bb7efa736daa3.tar.gz
mpd-6239dd96f2250c75e5d223a99e9bb7efa736daa3.tar.xz
mpd-6239dd96f2250c75e5d223a99e9bb7efa736daa3.zip
Tag: remove unused methods
Diffstat (limited to 'src/tag/Tag.hxx')
-rw-r--r--src/tag/Tag.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/tag/Tag.hxx b/src/tag/Tag.hxx
index 2c5f599e2..51b6178be 100644
--- a/src/tag/Tag.hxx
+++ b/src/tag/Tag.hxx
@@ -117,13 +117,6 @@ struct Tag {
*/
void Clear();
- void DeleteItem(unsigned i);
-
- /**
- * Clear all tag items with the specified type.
- */
- void ClearItemsByType(tag_type type);
-
/**
* Gives an optional hint to the tag library that we will now
* add several tag items; this is used by the library to
@@ -187,13 +180,6 @@ struct Tag {
*/
bool HasType(tag_type type) const;
- /**
- * Compares two tags, including the duration and all tag items. The
- * order of the tag items matters.
- */
- gcc_pure
- bool Equals(const Tag &other) const;
-
private:
void AddItemInternal(tag_type type, const char *value, size_t len);
};