summaryrefslogtreecommitdiffstats
path: root/xbmc/network/websocket/WebSocketManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/network/websocket/WebSocketManager.h')
-rw-r--r--xbmc/network/websocket/WebSocketManager.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/xbmc/network/websocket/WebSocketManager.h b/xbmc/network/websocket/WebSocketManager.h
new file mode 100644
index 0000000..7cbe8e9
--- /dev/null
+++ b/xbmc/network/websocket/WebSocketManager.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2011-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 <string>
+
+class CWebSocket;
+
+class CWebSocketManager
+{
+public:
+ static CWebSocket* Handle(const char* data, unsigned int length, std::string &response);
+};