mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-06 02:49:31 -06:00
43 lines
973 B
C++
43 lines
973 B
C++
/* This file can't be included in the project, it's for a precompiled header. */
|
|
|
|
/* Add C includes here */
|
|
|
|
#ifdef __cplusplus
|
|
/* Add C++ includes here */
|
|
#include <QDateTime>
|
|
#include <QDir>
|
|
#include <QElapsedTimer>
|
|
#include <QFile>
|
|
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QRegularExpression>
|
|
#include <QSet>
|
|
#include <QTimeZone>
|
|
#include <QVariantHash>
|
|
#include <QVersionNumber>
|
|
|
|
#ifndef QT_NO_DEBUG_STREAM
|
|
# include <QDebug>
|
|
#endif
|
|
|
|
#ifdef TINYORM_USING_QTSQLDRIVERS
|
|
# include <QtSql/QSqlError>
|
|
# include <QtSql/QSqlQuery>
|
|
# include <QtSql/QSqlRecord>
|
|
#endif
|
|
|
|
#include <fstream> // IWYU pragma: keep
|
|
#include <set> // IWYU pragma: keep
|
|
#include <stack> // IWYU pragma: keep
|
|
#include <typeindex> // IWYU pragma: keep
|
|
#include <unordered_set> // IWYU pragma: keep
|
|
|
|
#ifdef __GNUG__
|
|
# include <cxxabi.h>
|
|
#endif
|
|
#if defined(Q_OS_LINUX) && !defined(QT_LINUXBASE)
|
|
# include <sys/prctl.h>
|
|
#endif
|
|
#endif
|