summaryrefslogtreecommitdiff
path: root/MediaContainer.h
diff options
context:
space:
mode:
authorChristian <zerov83@googlemail.com>2015-12-20 18:55:27 +0100
committerChristian <zerov83@googlemail.com>2015-12-20 18:55:27 +0100
commit2a112bcf6f15603d46ab904eabb13bd8ee062a91 (patch)
treeb948261300ea449823485305b2d980504190b11d /MediaContainer.h
parent135ed5d0ce1613f70f4b2ddcb9e8bca721ffca9e (diff)
parent4775c62bf44ba6d757722611313f53d6dd2a0b56 (diff)
downloadvdr-plugin-plex-remoteserver.tar.gz
vdr-plugin-plex-remoteserver.tar.bz2
Merge pull request #2 from chriszero/remoteserverremoteserver
merge remoteserver branch
Diffstat (limited to 'MediaContainer.h')
-rw-r--r--MediaContainer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaContainer.h b/MediaContainer.h
index 947a647..02b8b96 100644
--- a/MediaContainer.h
+++ b/MediaContainer.h
@@ -19,6 +19,7 @@
#include "PVideo.h"
#include "PlexServer.h"
#include "Config.h"
+#include "device.h"
using Poco::XML::DOMParser;
using Poco::XML::InputSource;
@@ -33,11 +34,13 @@ namespace plexclient
{
class Video;
class Directory;
+class Device;
class MediaContainer: XmlObject
{
public:
MediaContainer(std::istream *response, PlexServer* Server);
+ MediaContainer(std::istream *response);
protected:
@@ -45,6 +48,7 @@ protected:
public:
std::vector<Directory> m_vDirectories;
std::vector<Video> m_vVideos;
+ std::vector<Device> m_vDevices;
bool m_bAllowSync;
std::string m_sArt;