-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders
More file actions
31 lines (27 loc) · 698 Bytes
/
Copy pathheaders
File metadata and controls
31 lines (27 loc) · 698 Bytes
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
#ifndef HEADERS_HXX
#define HEADERS_HXX
#include <QDebug>
#include <QtCore>
#include <QtCoreDepends>
#include <QtNetwork>
#include <QtNetworkDepends>
#include <QtConcurrent>
#include <QtConcurrentDepends>
using Core = QCoreApplication;
using Socket = QTcpSocket;
using Server = QTcpServer;
using Object = QObject;
using File = QFile;
using Bytes = QByteArray;
using Str = QString;
using StrL = QStringList;
template <typename K, typename V>
using Map = QMap<K,V>;
using Json = QJsonDocument;
using JObject = QJsonObject;
using JArray = QJsonArray;
using JValue = QJsonValue;
#define qin QTextStream(stdin)
#define qout QTextStream(stdout)
#define qerr QTextStream(stderr)
#endif // HEADERS_HXX