diff options
Diffstat (limited to 'xbmc/playlists/PlayListM3U.h')
-rw-r--r-- | xbmc/playlists/PlayListM3U.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/xbmc/playlists/PlayListM3U.h b/xbmc/playlists/PlayListM3U.h new file mode 100644 index 0000000..467ed30 --- /dev/null +++ b/xbmc/playlists/PlayListM3U.h @@ -0,0 +1,38 @@ +/* + * 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" +#include "URL.h" + +namespace PLAYLIST +{ +class CPlayListM3U : + public CPlayList +{ +public: + static const char *StartMarker; + static const char *InfoMarker; + static const char *ArtistMarker; + static const char *AlbumMarker; + static const char *PropertyMarker; + static const char *VLCOptMarker; + static const char *StreamMarker; + static const char *BandwidthMarker; + static const char *OffsetMarker; + +public: + CPlayListM3U(void); + ~CPlayListM3U(void) override; + bool Load(const std::string& strFileName) override; + void Save(const std::string& strFileName) const override; + + static std::map<std::string,std::string> ParseStreamLine(const std::string &streamLine); +}; +} |