diff options
Diffstat (limited to 'xbmc/application/IApplicationComponent.h')
-rw-r--r-- | xbmc/application/IApplicationComponent.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/xbmc/application/IApplicationComponent.h b/xbmc/application/IApplicationComponent.h new file mode 100644 index 0000000..da23d3e --- /dev/null +++ b/xbmc/application/IApplicationComponent.h @@ -0,0 +1,16 @@ +/* + * Copyright (C) 2022 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 + +//! \brief Base class for application components. +class IApplicationComponent +{ +public: + virtual ~IApplicationComponent() = default; +}; |