19 #pragma once |
19 #pragma once |
20 #include <QDataStream> |
20 #include <QDataStream> |
21 #include <QString> |
21 #include <QString> |
22 #include <QList> |
22 #include <QList> |
23 #include <QVariant> |
23 #include <QVariant> |
24 |
|
25 typedef qint8 int8; |
|
26 typedef qint16 int16; |
|
27 typedef qint32 int32; |
|
28 typedef qint64 int64; |
|
29 typedef quint8 uint8; |
|
30 typedef quint16 uint16; |
|
31 typedef quint32 uint32; |
|
32 typedef quint64 uint64; |
|
33 |
24 |
34 struct ZandronumVersion |
25 struct ZandronumVersion |
35 { |
26 { |
36 ZandronumVersion (QString name, bool isRelease, QString binaryPath) : |
27 ZandronumVersion (QString name, bool isRelease, QString binaryPath) : |
37 name (name), |
28 name (name), |