From 0c861db7a201c813530e703257f286257f39872f Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sat, 20 Nov 2021 16:22:22 +0100 Subject: NOISSUE Some happy little refactors --- launcher/ApplicationMessage.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 launcher/ApplicationMessage.h (limited to 'launcher/ApplicationMessage.h') diff --git a/launcher/ApplicationMessage.h b/launcher/ApplicationMessage.h new file mode 100644 index 00000000..745bdead --- /dev/null +++ b/launcher/ApplicationMessage.h @@ -0,0 +1,13 @@ +#pragma once + +#include +#include +#include + +struct ApplicationMessage { + QString command; + QMap args; + + QByteArray serialize(); + void parse(const QByteArray & input); +}; -- cgit