xbmc
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 
13 namespace XBMCAddon
14 {
15  namespace xbmcwsgi
16  {
27  {
28  public:
30  ~WsgiResponseBody() override;
31 
32 #ifdef DOXYGEN_SHOULD_USE_THIS
33  operator()(...);
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:26
Defining LOG_LIFECYCLE_EVENTS will log all instantiations, deletions and also reference countings (in...
Definition: Addon.cpp:25
This class is the superclass for all reference counted classes in the api.
Definition: AddonClass.h:57