27df6053ca006b06fe44b1d1288a86cf14e645cb
[someplayer] / src / filestorage.cpp
1 #include "filestorage.h"
2
3 using namespace SomePlayer::Storage;
4
5 FileStorage::FileStorage(QString path) {
6         _path_prefix = path;
7 }
8
9 QList<Playlist> FileStorage::getPlaylists() {
10         QList<Playlist> stub;
11         return stub;
12 }
13
14 void FileStorage::savePlaylist(Playlist playlist) {
15 }
16
17 void FileStorage::removePlaylist(Playlist playlist) {
18 }
19
20 void FileStorage::removePlaylist(QString name) {
21 }
22
23 Playlist FileStorage::getCurrentPlaylist() {
24         Playlist stub;
25         return stub;
26 }
27
28 void FileStorage::saveCurrentPlaylist(Playlist playlist) {
29 }