summaryrefslogtreecommitdiffstats
path: root/xbmc/filesystem/DAVCommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/filesystem/DAVCommon.h')
-rw-r--r--xbmc/filesystem/DAVCommon.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/xbmc/filesystem/DAVCommon.h b/xbmc/filesystem/DAVCommon.h
new file mode 100644
index 0000000..483de3b
--- /dev/null
+++ b/xbmc/filesystem/DAVCommon.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2005-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 "utils/XBMCTinyXML.h"
+
+namespace XFILE
+{
+ class CDAVCommon
+ {
+ public:
+ static bool ValueWithoutNamespace(const TiXmlNode *pNode, const std::string& value);
+ static std::string GetStatusTag(const TiXmlElement *pElement);
+ };
+}