cutter/src/webserverthread.cpp
Hugo Teso ca821e1064 First code commit
First commit with the app code
2017-03-29 12:18:37 +02:00

15 lines
250 B
C++

#include "webserverthread.h"
WebServerThread::WebServerThread(QObject *parent) :
QThread(parent)
{
// MEOW
}
void WebServerThread::run() {
if (core == NULL)
return;
//eprintf ("Starting webserver!");
core->cmd ("=h");
}