diff options
author | chriszero <zerov83@gmail.com> | 2015-02-22 16:26:29 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-22 16:26:29 +0100 |
commit | a4567e4d33727c941a8abe14c8165f212835f064 (patch) | |
tree | c2437e167edbb9d353981242810755f53be88860 /PVideo.h | |
parent | 3f4e427c519aebc2e918443bc03dbec6c5344416 (diff) | |
download | vdr-plugin-plex-a4567e4d33727c941a8abe14c8165f212835f064.tar.gz vdr-plugin-plex-a4567e4d33727c941a8abe14c8165f212835f064.tar.bz2 |
Video is now able to update itself
Diffstat (limited to 'PVideo.h')
-rw-r--r-- | PVideo.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -34,6 +34,9 @@ class MediaContainer; class Video: XmlObject { +private: + void Parse(Poco::XML::Node* pNode); + public: Video(Poco::XML::Node* pNode, PlexServer Server, MediaContainer* parent); Video() {}; @@ -69,6 +72,8 @@ public: int m_iParentIndex; std::string GetTitle(); + bool SetStream(Stream* stream); + bool UpdateFromServer(); }; } |