aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/webserver/diceserver.h
diff options
context:
space:
mode:
Diffstat (limited to 'webserver/diceserver.h')
-rw-r--r--webserver/diceserver.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/webserver/diceserver.h b/webserver/diceserver.h
deleted file mode 100644
index fa32814..0000000
--- a/webserver/diceserver.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "diceparser.h"
-#include "qhttp/src/qhttpserver.hpp"
-#include <QObject>
-
-class DiceServer : public QObject
-{
- Q_OBJECT
-public:
- DiceServer(int port= 8085);
- virtual ~DiceServer();
-
- QString startDiceParsing(QString cmd);
- QString diceToText(ExportedDiceResult& dice, bool highlight, bool homogeneous);
-
-private:
- DiceParser* m_diceParser;
- qhttp::server::QHttpServer* m_server;
-};