diff options
author | chriszero <zerov83@gmail.com> | 2015-01-17 22:42:08 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-01-17 22:42:08 +0100 |
commit | d3777dd6bcb11ceea85eca91e670d7872ba7b1ea (patch) | |
tree | 0f105aa75321c5c83a17c0c9338fb2534f61fc38 /PVideo.h | |
parent | adc0c699c19b0389b899230a73f3ab635bcdc5c3 (diff) | |
download | vdr-plugin-plex-d3777dd6bcb11ceea85eca91e670d7872ba7b1ea.tar.gz vdr-plugin-plex-d3777dd6bcb11ceea85eca91e670d7872ba7b1ea.tar.bz2 |
Added current status of played stream (current, total time, play, pause)
Diffstat (limited to 'PVideo.h')
-rw-r--r-- | PVideo.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -17,6 +17,7 @@ #include "XmlObject.h" #include "Media.h" +#include "PlexServer.h" using Poco::XML::DOMParser; using Poco::XML::Document; @@ -28,11 +29,11 @@ using Poco::Exception; namespace plexclient { - + class Video: XmlObject { public: - Video(Poco::XML::Node* pNode); + Video(Poco::XML::Node* pNode, PlexServer* Server); ~Video(); public: @@ -60,7 +61,7 @@ public: std::vector<std::string> m_vRole; std::string m_sCollection; Media *m_pMedia; - + PlexServer* m_pServer; }; } |