aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/bin/webserver/diceserver.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2022-04-29 10:48:09 +0200
committerRenaud G <renaud@rolisteam.org>2022-04-29 10:48:09 +0200
commit07c5f6ec23fcf9237a24e71adcfacabce677f818 (patch)
tree588e8c5f82b9163181fad3581f610e6f1d88cba4 /src/bin/webserver/diceserver.h
parenta9153f1615a842cfb9e9bcda4d9071e202618569 (diff)
downloadOneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.tar.gz
OneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.zip
Change file organization.
Diffstat (limited to 'src/bin/webserver/diceserver.h')
-rw-r--r--src/bin/webserver/diceserver.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/bin/webserver/diceserver.h b/src/bin/webserver/diceserver.h
new file mode 100644
index 0000000..fa32814
--- /dev/null
+++ b/src/bin/webserver/diceserver.h
@@ -0,0 +1,18 @@
+#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;
+};