mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
ca821e1064
First commit with the app code
15 lines
250 B
C++
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");
|
|
}
|