Kodi Development 22.0
for Binary and Script based Add-Ons
 
Loading...
Searching...
No Matches
WsgiResponseBody.h
1/*
2 * Copyright (C) 2015-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 "interfaces/legacy/AddonClass.h"
12
13namespace XBMCAddon
14{
15 namespace xbmcwsgi
16 {
26 class WsgiResponseBody : public AddonClass
27 {
28 public:
30 ~WsgiResponseBody() override;
31
32#ifdef DOXYGEN_SHOULD_USE_THIS
41#else
42 void operator()(const String& data);
43#endif
44
45#if !defined SWIG && !defined DOXYGEN_SHOULD_SKIP_THIS
46 String m_data;
47#endif
48 };
49 }
50}
Definition WsgiResponseBody.h:27