summaryrefslogtreecommitdiff
path: root/Stream.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-02-22 16:26:29 +0100
committerchriszero <zerov83@gmail.com>2015-02-22 16:26:29 +0100
commita4567e4d33727c941a8abe14c8165f212835f064 (patch)
treec2437e167edbb9d353981242810755f53be88860 /Stream.h
parent3f4e427c519aebc2e918443bc03dbec6c5344416 (diff)
downloadvdr-plugin-plex-a4567e4d33727c941a8abe14c8165f212835f064.tar.gz
vdr-plugin-plex-a4567e4d33727c941a8abe14c8165f212835f064.tar.bz2
Video is now able to update itself
Diffstat (limited to 'Stream.h')
-rw-r--r--Stream.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Stream.h b/Stream.h
index f8a392c..5d9b94a 100644
--- a/Stream.h
+++ b/Stream.h
@@ -33,8 +33,10 @@ class Stream: XmlObject
{
public:
Stream(Poco::XML::Node* pNode);
+ Stream() {};
public:
+ bool m_bSelected;
int m_iID;
int m_iStreamType;
int m_iIndex;
@@ -44,6 +46,8 @@ public:
std::string m_sLanguage;
std::string m_sLanguageCode;
StreamType m_eStreamType;
+
+ std::string GetSetStreamQuery();
};
}