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

22 lines
306 B
C++

#ifndef WEBSERVERTHREAD_H
#define WEBSERVERTHREAD_H
#include <QThread>
#include "qrcore.h"
class WebServerThread : public QThread
{
Q_OBJECT
public:
QRCore *core;
explicit WebServerThread(QObject *parent = 0);
signals:
public slots:
private:
void run();
};
#endif // WEBSERVERTHREAD_H