diff options
Diffstat (limited to 'Media.h')
-rw-r--r-- | Media.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -16,6 +16,7 @@ #include <iostream> #include "XmlObject.h" // Base class: model::XmlObject +#include "Stream.h" using Poco::XML::DOMParser; using Poco::XML::Document; @@ -30,9 +31,9 @@ namespace plexclient class Media: XmlObject { -public: + public: + Media() {}; Media(Poco::XML::Node* pNode); - ~Media(); public: std::string m_sVideoResolution; @@ -54,7 +55,8 @@ public: std::string m_sPartFile; long m_lPartSize; std::string m_sPartContainer; - + + std::vector<Stream> m_vStreams; }; } |