summaryrefslogtreecommitdiff
path: root/PVideo.h
diff options
context:
space:
mode:
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();
};
}