diff options
author | chriszero <zerov83@gmail.com> | 2015-02-22 16:26:29 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-22 16:26:29 +0100 |
commit | a4567e4d33727c941a8abe14c8165f212835f064 (patch) | |
tree | c2437e167edbb9d353981242810755f53be88860 /Stream.h | |
parent | 3f4e427c519aebc2e918443bc03dbec6c5344416 (diff) | |
download | vdr-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.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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(); }; } |