/xbmc/dialogs/GUIDialogPlayerControls.cpp

http://github.com/xbmc/xbmc · C++ · 19 lines · 7 code · 5 blank · 7 comment · 0 complexity · 62930572c538b0e46fb72db95c27c19a 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. #include "GUIDialogPlayerControls.h"
  9. CGUIDialogPlayerControls::CGUIDialogPlayerControls(void)
  10. : CGUIDialog(WINDOW_DIALOG_PLAYER_CONTROLS, "PlayerControls.xml")
  11. {
  12. m_loadType = KEEP_IN_MEMORY;
  13. }
  14. CGUIDialogPlayerControls::~CGUIDialogPlayerControls(void) = default;