Sun, 22 Sep 2019 11:51:41 +0300
Added lots of code
2 | 1 | #pragma once |
2 | #include <QString> | |
3 | #include <QTextStream> | |
4 | ||
5 | struct Uuid | |
6 | { | |
7 | quint64 a; | |
8 | quint64 b; | |
9 | }; | |
10 | ||
11 | void incrementUuid(Uuid &uuid); | |
12 | void uuidToString(const Uuid &uuid, QTextStream &stream); |