-
-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathAllHeaders_pch.h
More file actions
91 lines (87 loc) · 2.24 KB
/
AllHeaders_pch.h
File metadata and controls
91 lines (87 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#ifndef PCH_ENABLED
#define PCH_ENABLED
#include <QByteArray>
#include <QBuffer>
#include <QDateTime>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QHash>
#include <QHostAddress>
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonValue>
#include <QList>
#include <QLocalSocket>
#include <QMap>
#include <QMetaType>
#include <QMultiMap>
#include <QMutex>
#include <QMutexLocker>
#include <QNetworkReply>
#include <QPair>
#include <QRectF>
#include <QRegularExpression>
#include <QSemaphore>
#include <QSet>
#include <QSize>
#include <QSocketNotifier>
#include <QStack>
#include <QString>
#include <QStringList>
#include <QTcpSocket>
#include <QThread>
#include <QThreadStorage>
#include <QTimer>
#include <QUdpSocket>
#include <QUrl>
#include <QUrlQuery>
#include <QVariant>
#include <QVector>
#include <algorithm>
#include <atomic>
#include <cassert>
#include <cfloat>
#include <chrono>
#include <cmath>
#include <cstdio>
#include <cstdarg>
#include <cstdlib>
#include <cstdint>
#include <cstring>
#include <ctime>
#include <iostream>
#include <functional>
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <mutex>
#include <set>
#include <sstream>
#include <stdexcept>
#include <utility>
#include <vector>
#include <iomanip>
#include <optional>
#include <type_traits>
#include <concepts>
#include <tuple>
#if __has_include(<format>)
#include <format>
#if !(defined(__cpp_lib_format) && ( !defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) || (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 130300) ))
#if defined(__APPLE__)
#warning "********** Warning: <format> found, but C++20 features incomplete/disabled. Falling back to basic logging. **********"
#else
#pragma message("********** Warning: <format> found, but C++20 features incomplete/disabled. Falling back to basic logging. **********")
#endif
#endif
#else
#if defined(__APPLE__)
#warning "********** Warning: <format> header not found. Falling back to basic logging. **********"
#else
#pragma message("********** Warning: <format> header not found. Falling back to basic logging. **********")
#endif
#endif
#endif // PCH_ENABLED