From 573e5eb5bd2a638399f64195d0b7c05bf41bf7e0 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 13 Dec 2016 09:10:39 -0500 Subject: [PATCH] fix typo --- WebSocks.cpp | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/WebSocks.cpp b/WebSocks.cpp index 1b438b01..a9a8751b 100644 --- a/WebSocks.cpp +++ b/WebSocks.cpp @@ -1,5 +1,6 @@ #include "WebSocks.h" #include "Log.h" +#include #ifdef WITH_EVENTS #include "ClientContext.h" @@ -382,14 +383,24 @@ namespace client class WebSocksImpl { public: - WebSocks(const std::string & addr, int port) {} - ~WebSocks(){} + WebSocksImpl(const std::string & addr, int port) + { + } + + ~WebSocksImpl() + { + } + void Start() { LogPrint(eLogInfo, "WebSockets not enabled on compile time"); } - void Stop() {} + void Stop() + { + + } + }; } }