[WASAPI] fix stream types and frequencies enumeration
[xbmc.git] / xbmc / playlists / PlayListPLS.h
blob332068d2ef89e16a0bb0e14fb9f1ab51d8b8d97e
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "PlayList.h"
13 #include <string>
14 #include <vector>
16 namespace KODI::PLAYLIST
18 class CPlayListPLS : public CPlayList
20 public:
21 CPlayListPLS(void);
22 ~CPlayListPLS(void) override;
23 bool Load(const std::string& strFileName) override;
24 void Save(const std::string& strFileName) const override;
25 virtual bool Resize(std::vector<int>::size_type newSize);