2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
11 #include "threads/CriticalSection.h"
12 #include "windowing/XBMC_events.h"
18 class CAppInboundProtocol
20 friend class CApplication
;
23 CAppInboundProtocol(CApplication
& app
);
24 bool OnEvent(const XBMC_Event
& newEvent
);
25 void SetRenderGUI(bool renderGUI
);
31 bool m_closed
= false;
33 std::deque
<XBMC_Event
> m_portEvents
;
34 CCriticalSection m_portSection
;