summaryrefslogtreecommitdiff
path: root/ControlServer.cpp
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2014-11-15 19:43:07 +0100
committerchriszero <zerov83@gmail.com>2014-11-15 19:43:07 +0100
commit23f9f7712bfa33b5a488a447a6fabe6035cc3240 (patch)
tree06bbe8e0bc52496c5ad3c41accc7524aa597e670 /ControlServer.cpp
parenta40adaf76fb1267d38b4c5e6386933ddb2d0d328 (diff)
downloadvdr-plugin-plex-23f9f7712bfa33b5a488a447a6fabe6035cc3240.tar.gz
vdr-plugin-plex-23f9f7712bfa33b5a488a447a6fabe6035cc3240.tar.bz2
initial commit
Diffstat (limited to 'ControlServer.cpp')
-rw-r--r--ControlServer.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/ControlServer.cpp b/ControlServer.cpp
new file mode 100644
index 0000000..439dc7a
--- /dev/null
+++ b/ControlServer.cpp
@@ -0,0 +1,17 @@
+#include "ControlServer.h"
+
+namespace plexclient
+{
+
+void ControlServer::Start() {
+ // start the HTTPServer
+ m_pSrv->start();
+}
+
+void ControlServer::Stop() {
+ // Stop the HTTPServer
+ m_pSrv->stop();
+}
+
+
+}