/xbmc/programs/GUIViewStatePrograms.h

http://github.com/xbmc/xbmc · C Header · 24 lines · 12 code · 5 blank · 7 comment · 0 complexity · b7bb32048089a38322d5f5942012864b MD5 · raw file

  1. /*
  2. * Copyright (C) 2005-2018 Team Kodi
  3. * This file is part of Kodi - https://kodi.tv
  4. *
  5. * SPDX-License-Identifier: GPL-2.0-or-later
  6. * See LICENSES/README.md for more information.
  7. */
  8. #pragma once
  9. #include "view/GUIViewState.h"
  10. class CGUIViewStateWindowPrograms : public CGUIViewState
  11. {
  12. public:
  13. explicit CGUIViewStateWindowPrograms(const CFileItemList& items);
  14. protected:
  15. void SaveViewState() override;
  16. std::string GetLockType() override;
  17. std::string GetExtensions() override;
  18. VECSOURCES& GetSources() override;
  19. };