kodi
DAVCommon.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include <string>
12 
13 namespace tinyxml2
14 {
15 class XMLElement;
16 class XMLNode;
17 } // namespace tinyxml2
18 
19 namespace XFILE
20 {
21  class CDAVCommon
22  {
23  public:
24  static bool ValueWithoutNamespace(const tinyxml2::XMLNode* node, const std::string& value);
25  static std::string GetStatusTag(const tinyxml2::XMLElement* element);
26  };
27 }
Definition: DAVCommon.h:21
Definition: Scraper.h:41
Definition: SkinTimerManager.h:18