This commit is contained in:
Jeff Becker 2016-12-13 09:10:39 -05:00
parent a59e073536
commit 573e5eb5bd

View File

@ -1,5 +1,6 @@
#include "WebSocks.h"
#include "Log.h"
#include <string>
#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()
{
}
};
}
}