aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker/Match.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-12 13:47:57 +0100
committerMax Kellermann <max@duempel.org>2014-12-12 22:10:24 +0100
commitfed44e95b3c4bc74c8bd96eaf6f08bc6ad01ed55 (patch)
treea5c6ba9076df11690dfc45c311bb57ef2fdaf7fd /src/sticker/Match.hxx
parent71ece564702a5d91d72f5d35fe34fe5cf9f18556 (diff)
downloadmpd-fed44e95b3c4bc74c8bd96eaf6f08bc6ad01ed55.tar.gz
mpd-fed44e95b3c4bc74c8bd96eaf6f08bc6ad01ed55.tar.xz
mpd-fed44e95b3c4bc74c8bd96eaf6f08bc6ad01ed55.zip
sticker/Song: add enum StickerOperator to sticker_song_find()
Diffstat (limited to 'src/sticker/Match.hxx')
-rw-r--r--src/sticker/Match.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/sticker/Match.hxx b/src/sticker/Match.hxx
new file mode 100644
index 000000000..f91e70b40
--- /dev/null
+++ b/src/sticker/Match.hxx
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2003-2014 The Music Player Daemon Project
+ * http://www.musicpd.org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef MPD_STICKER_MATCH_HXX
+#define MPD_STICKER_MATCH_HXX
+
+enum class StickerOperator {
+ /**
+ * Matches if a sticker with the specified name exists. The
+ * "value" parameter is ignored (must be nullptr).
+ */
+ EXISTS,
+};
+
+#endif