From 36e3c6837bb338faf61fffd6888bdca2354a1bbc Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 9 Mar 2016 07:17:04 +0100 Subject: Skindesigner "DetailView" in development, pushed missing files. --- playlist.cpp | 11 ++++ playlist.h | 19 ++++++ templates/plug-plex-detail.xml | 132 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 162 insertions(+) create mode 100644 playlist.cpp create mode 100644 playlist.h create mode 100644 templates/plug-plex-detail.xml diff --git a/playlist.cpp b/playlist.cpp new file mode 100644 index 0000000..4162591 --- /dev/null +++ b/playlist.cpp @@ -0,0 +1,11 @@ +#include "playlist.h" + +namespace plexclient +{ + +Playlist::Playlist(Poco::XML::Node* pNode, MediaContainer* parent) +{ +} + +} + diff --git a/playlist.h b/playlist.h new file mode 100644 index 0000000..6363949 --- /dev/null +++ b/playlist.h @@ -0,0 +1,19 @@ +#ifndef PLAYLIST_H +#define PLAYLIST_H + +#include "XmlObject.h" // Base class: plexclient::XmlObject +#include "MediaContainer.h" + +namespace plexclient +{ + +class Playlist : private plexclient::XmlObject +{ +public: + Playlist(Poco::XML::Node* pNode, MediaContainer* parent); + +}; + +} + +#endif // PLAYLIST_H diff --git a/templates/plug-plex-detail.xml b/templates/plug-plex-detail.xml new file mode 100644 index 0000000..c202745 --- /dev/null +++ b/templates/plug-plex-detail.xml @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3