summaryrefslogtreecommitdiff
path: root/PVideo.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-01-17 22:42:08 +0100
committerchriszero <zerov83@gmail.com>2015-01-17 22:42:08 +0100
commitd3777dd6bcb11ceea85eca91e670d7872ba7b1ea (patch)
tree0f105aa75321c5c83a17c0c9338fb2534f61fc38 /PVideo.h
parentadc0c699c19b0389b899230a73f3ab635bcdc5c3 (diff)
downloadvdr-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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/PVideo.h b/PVideo.h
index 3d69bc4..0d5829a 100644
--- a/PVideo.h
+++ b/PVideo.h
@@ -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;
};
}