blob: 636394965f0f4d33360533ee74669ae8b3fcc768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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
|