| 5 | #include <QByteArray> |
| 6 | |
| 7 | struct ApplicationMessage { |
| 8 | QString command; |
| 9 | QMap<QString, QString> args; |
| 10 | |
| 11 | QByteArray serialize(); |
| 12 | void parse(const QByteArray & input); |
| 13 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected