mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-24 13:55:26 +00:00
22 lines
306 B
C
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
|