summaryrefslogtreecommitdiffstats
path: root/src/PatchedClonkParser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchedClonkParser.hpp')
-rw-r--r--src/PatchedClonkParser.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/PatchedClonkParser.hpp b/src/PatchedClonkParser.hpp
new file mode 100644
index 0000000..dd4a661
--- /dev/null
+++ b/src/PatchedClonkParser.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "ClonkInterface.hpp"
+
+class PatchedClonkParser : public ClonkParser
+{
+public:
+ PatchedClonkParser(CRSMSession& session);
+
+ void parseMessage(const QString& line);
+
+protected:
+ ClientInfo& getClientInfo(const QString& pcName, int CUID, const QString& user);
+};