forked from awawa-dev/HyperHDR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for precompiled headers (awawa-dev#359)
- Loading branch information
Showing
63 changed files
with
229 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#ifndef ALLHEADERS_PCH_H_ | ||
#define ALLHEADERS_PCH_H_ | ||
|
||
#include <QAtomicInteger> | ||
#include <QBuffer> | ||
#include <QByteArray> | ||
#include <QColor> | ||
#include <QCoreApplication> | ||
#include <QCryptographicHash> | ||
#include <QDateTime> | ||
#include <QExplicitlySharedDataPointer> | ||
#include <QFile> | ||
#include <QHostAddress> | ||
#include <QHostInfo> | ||
#include <QImage> | ||
#include <QJsonDocument> | ||
#include <QJsonObject> | ||
#include <QJsonArray> | ||
#include <QJsonValue> | ||
#include <QList> | ||
#include <QMap> | ||
#include <QMultiMap> | ||
#include <QMutex> | ||
#include <QMutexLocker> | ||
#include <QPair> | ||
#include <QPainter> | ||
#include <QRectF> | ||
#include <QRegularExpression> | ||
#include <QResource> | ||
#include <QSet> | ||
#include <QSize> | ||
#include <QSocketNotifier> | ||
#include <QStack> | ||
#include <QString> | ||
#include <QStringList> | ||
#include <QSemaphore> | ||
#include <QSharedData> | ||
#include <QQueue> | ||
#include <QTcpSocket> | ||
#include <QTimer> | ||
#include <QTextStream> | ||
#include <QThread> | ||
#include <QThreadStorage> | ||
#include <QUdpSocket> | ||
#include <QUuid> | ||
#include <QVariant> | ||
#include <QVector> | ||
|
||
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)) | ||
#include <QStringView> | ||
#else | ||
#include <QStringRef> | ||
#endif | ||
|
||
#include <algorithm> | ||
#include <atomic> | ||
#include <cassert> | ||
#include <chrono> | ||
#include <cmath> | ||
#include <cstdint> | ||
#include <cstring> | ||
#include <ctime> | ||
#include <exception> | ||
#include <functional> | ||
#include <iterator> | ||
#include <inttypes.h> | ||
#include <iostream> | ||
#include <limits> | ||
#include <list> | ||
#include <stdexcept> | ||
#include <stdlib.h> | ||
#include <stdio.h> | ||
#include <stdarg.h> | ||
#include <sstream> | ||
#include <map> | ||
#include <math.h> | ||
#include <memory> | ||
#include <type_traits> | ||
#include <vector> | ||
|
||
|
||
#endif // ALLHEADERS_PCH_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,4 +42,3 @@ class AnimationBaseMusic : public AnimationBase | |
|
||
}; | ||
|
||
#include <base/SoundCapture.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#include <db/MetaTable.h> | ||
#include <QNetworkInterface> | ||
|
||
|
||
MetaTable::MetaTable(QObject* parent, bool readonlyMode) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.