diff options
Diffstat (limited to 'xbmc/playlists/PlayListURL.h')
-rw-r--r-- | xbmc/playlists/PlayListURL.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/xbmc/playlists/PlayListURL.h b/xbmc/playlists/PlayListURL.h new file mode 100644 index 0000000..d0baa0a --- /dev/null +++ b/xbmc/playlists/PlayListURL.h @@ -0,0 +1,23 @@ +/* + * 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 "PlayList.h" + +namespace PLAYLIST +{ +class CPlayListURL : + public CPlayList +{ +public: + CPlayListURL(void); + ~CPlayListURL(void) override; + bool Load(const std::string& strFileName) override; +}; +} |