diff options
Diffstat (limited to 'xbmc/addons/gui/GUIViewStateAddonBrowser.h')
-rw-r--r-- | xbmc/addons/gui/GUIViewStateAddonBrowser.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/xbmc/addons/gui/GUIViewStateAddonBrowser.h b/xbmc/addons/gui/GUIViewStateAddonBrowser.h new file mode 100644 index 0000000..e7cc564 --- /dev/null +++ b/xbmc/addons/gui/GUIViewStateAddonBrowser.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 "view/GUIViewState.h" + +class CGUIViewStateAddonBrowser : public CGUIViewState +{ +public: + explicit CGUIViewStateAddonBrowser(const CFileItemList& items); + +protected: + void SaveViewState() override; + std::string GetExtensions() override; +}; |