mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 21:35:28 +00:00
ca821e1064
First commit with the app code
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
|