server: remove useless base64 helper

This commit is contained in:
Stéphane L 2019-01-01 05:16:57 +01:00
parent 5748c4d0ec
commit 11617eea99

View File

@ -34,15 +34,6 @@ using websocketpp::lib::placeholders::_1;
using websocketpp::lib::placeholders::_2;
using websocketpp::lib::bind;
QString decodeBase64(const QString& source)
{
return QString::fromUtf8(
QByteArray::fromBase64(
source.toUtf8()
)
);
}
WSServerPtr WSServer::_instance = WSServerPtr(nullptr);
WSServerPtr WSServer::Current()