summaryrefslogtreecommitdiffstats
path: root/xbmc/music/MusicDbUrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/music/MusicDbUrl.h')
-rw-r--r--xbmc/music/MusicDbUrl.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/xbmc/music/MusicDbUrl.h b/xbmc/music/MusicDbUrl.h
new file mode 100644
index 0000000..06f3efe
--- /dev/null
+++ b/xbmc/music/MusicDbUrl.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2012-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "DbUrl.h"
+
+#include <string>
+
+class CVariant;
+
+class CMusicDbUrl : public CDbUrl
+{
+public:
+ CMusicDbUrl();
+ ~CMusicDbUrl() override;
+
+protected:
+ bool parse() override;
+ bool validateOption(const std::string &key, const CVariant &value) override;
+};