diff options
Diffstat (limited to 'xbmc/interfaces/legacy/WindowException.h')
-rw-r--r-- | xbmc/interfaces/legacy/WindowException.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/xbmc/interfaces/legacy/WindowException.h b/xbmc/interfaces/legacy/WindowException.h new file mode 100644 index 0000000..ae35b57 --- /dev/null +++ b/xbmc/interfaces/legacy/WindowException.h @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2005-2018 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 + +#include "Exception.h" + +namespace XBMCAddon +{ + namespace xbmcgui + { + XBMCCOMMONS_STANDARD_EXCEPTION(WindowException); + } +} + + |