blob: 34e723cb774a3ca49918f246bcb9003ef817518b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PLAYLIST_H
#define PLAYLIST_H
#include "XmlObject.h" // Base class: plexclient::XmlObject
#include "MediaContainer.h"
namespace plexclient {
class Playlist : private plexclient::XmlObject {
public:
Playlist(Poco::XML::Node *pNode, MediaContainer *parent);
};
}
#endif // PLAYLIST_H
|