mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-22 01:25:10 -07:00
24 lines
588 B
C
24 lines
588 B
C
/** @file qtcore_pch.h
|
|
* @brief Precompiled header for all Qt targets (Qt Core only).
|
|
*
|
|
* Safe for every target that links Qt Core, including the headless
|
|
* Servatrice binary. Keep this header free of any widget/gui types.
|
|
*/
|
|
|
|
#include <QBasicTimer>
|
|
#include <QByteArray>
|
|
#include <QDateTime>
|
|
#include <QDebug>
|
|
#include <QFile>
|
|
#include <QHash>
|
|
#include <QList>
|
|
#include <QLoggingCategory>
|
|
#include <QMap>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QRandomGenerator>
|
|
#include <QSharedPointer>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QTimer>
|
|
#include <QVariant>
|