diff options
author | chriszero <zerov83@gmail.com> | 2015-02-14 18:53:11 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-14 18:53:11 +0100 |
commit | e412257abf8de4576a180351d24ff07589fa630c (patch) | |
tree | ed020de5c8257545eca66e96997984731ac60379 /PVideo.h | |
parent | 20fefdd3f341d6e7f6b15e4926bf5569aa1943d5 (diff) | |
download | vdr-plugin-plex-e412257abf8de4576a180351d24ff07589fa630c.tar.gz vdr-plugin-plex-e412257abf8de4576a180351d24ff07589fa630c.tar.bz2 |
Various Fixes0.1.0
Bump Version to frist beta.
Diffstat (limited to 'PVideo.h')
-rw-r--r-- | PVideo.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -16,6 +16,7 @@ #include <iostream> #include "XmlObject.h" +#include "MediaContainer.h" #include "Media.h" #include "PlexServer.h" @@ -29,11 +30,12 @@ using Poco::Exception; namespace plexclient { +class MediaContainer; class Video: XmlObject { public: - Video(Poco::XML::Node* pNode, PlexServer Server); + Video(Poco::XML::Node* pNode, PlexServer Server, MediaContainer* parent); Video() {}; public: @@ -63,6 +65,10 @@ public: Media m_Media; PlexServer m_Server; int m_iMyPlayOffset; + int m_iIndex; + int m_iParentIndex; + + std::string GetTitle(); }; } |