[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / interfaces / IActionListener.h
blob0419034d6225a2adbd17a9ec3aa35a3e25ec966b
1 /*
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.
7 */
9 #pragma once
11 class CAction;
13 class IActionListener
15 public:
16 virtual ~IActionListener() = default;
18 virtual bool OnAction(const CAction &action) = 0;