summaryrefslogtreecommitdiff
path: root/PVideo.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-02-14 18:53:11 +0100
committerchriszero <zerov83@gmail.com>2015-02-14 18:53:11 +0100
commite412257abf8de4576a180351d24ff07589fa630c (patch)
treeed020de5c8257545eca66e96997984731ac60379 /PVideo.h
parent20fefdd3f341d6e7f6b15e4926bf5569aa1943d5 (diff)
downloadvdr-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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/PVideo.h b/PVideo.h
index b78f57a..6c25011 100644
--- a/PVideo.h
+++ b/PVideo.h
@@ -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();
};
}