[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / video / VideoDbUrl.h
blob41d66495b493c82141f8dbb41801abd76623dc27
1 /*
2 * Copyright (C) 2012-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "DbUrl.h"
13 class CVariant;
15 class CVideoDbUrl : public CDbUrl
17 public:
18 CVideoDbUrl();
19 ~CVideoDbUrl() override;
21 const std::string& GetItemType() const { return m_itemType; }
23 protected:
24 bool parse() override;
25 bool validateOption(const std::string &key, const CVariant &value) override;
27 private:
28 std::string m_itemType;