Began removal of platform/. The Monitor:: namespace is completely converted.
[aesalon.git] / src / misc / Types.h
blobaea2bb72b36e79391b664b5c28fec5c9642c38c1
1 #ifndef AESALON_MISC_TYPES_H
2 #define AESALON_MISC_TYPES_H
4 #ifndef QT_VERSION
5 #include <sys/types.h>
6 #endif
8 namespace Aesalon {
9 namespace Misc {
11 #if defined(QT_VERSION)
12 typedef quint64 uint_64;
13 typedef qint32 int_32;
14 typedef qint16 int_16;
15 #else
16 typedef u_int64_t uint_64;
17 typedef int32_t int_32;
18 typedef int16_t int_16;
19 #endif
21 } // namespace Misc
22 } // namespace Aesalon
24 #endif