mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 20:36:09 +00:00
771eccc125
* Renaming QRCore and QRDisasm to IaitoRCore and IaitoRDisasm * Included AStyle formatting changes
27 lines
367 B
C++
27 lines
367 B
C++
#ifndef RADARE_WEBSERVER_H
|
|
#define RADARE_WEBSERVER_H
|
|
|
|
#include <QThread>
|
|
#include <QMutex>
|
|
|
|
class IaitoRCore;
|
|
|
|
class RadareWebServer
|
|
{
|
|
public:
|
|
|
|
explicit RadareWebServer(IaitoRCore *core);
|
|
~RadareWebServer();
|
|
|
|
void start();
|
|
void stop();
|
|
|
|
bool isStarted() const;
|
|
|
|
private:
|
|
IaitoRCore *core;
|
|
bool started;
|
|
};
|
|
|
|
#endif // RADARE_WEBSERVER_H
|