aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/TagBuilder.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-12-02 12:42:04 +0100
committerMax Kellermann <max@duempel.org>2013-12-03 11:46:23 +0100
commit6325c3f14a4dd1442d69dc5716b33c9d5b410164 (patch)
treeff7f9800326726cc8f80db46736fe14200e25be8 /src/tag/TagBuilder.hxx
parent074a23e6b4c7968715cfcc52ab9305be8a9fe3ac (diff)
downloadmpd-6325c3f14a4dd1442d69dc5716b33c9d5b410164.tar.gz
mpd-6325c3f14a4dd1442d69dc5716b33c9d5b410164.tar.xz
mpd-6325c3f14a4dd1442d69dc5716b33c9d5b410164.zip
TagBuilder: add Tag copy/move constructors
Diffstat (limited to '')
-rw-r--r--src/tag/TagBuilder.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tag/TagBuilder.hxx b/src/tag/TagBuilder.hxx
index ff6251014..5804a7940 100644
--- a/src/tag/TagBuilder.hxx
+++ b/src/tag/TagBuilder.hxx
@@ -65,6 +65,9 @@ public:
TagBuilder(const TagBuilder &other) = delete;
TagBuilder &operator=(const TagBuilder &other) = delete;
+ TagBuilder(const Tag &other);
+ TagBuilder(Tag &&other);
+
/**
* Returns true if the tag contains no items. This ignores the "time"
* attribute.