summaryrefslogtreecommitdiff
path: root/ControlServer.cpp
diff options
context:
space:
mode:
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();
+}
+
+
+}