qt_demoe/tool/netserver/head.h

18 lines
441 B
C
Raw Normal View History

2019-09-29 05:13:01 +00:00
#include <QtCore>
#include <QtGui>
#include <QtNetwork>
2021-09-16 06:48:38 +00:00
#if (QT_VERSION >= QT_VERSION_CHECK(5,0,0))
2019-09-29 05:13:01 +00:00
#include <QtWidgets>
2021-03-29 01:37:22 +00:00
#endif
2019-09-29 05:13:01 +00:00
2021-05-30 07:59:42 +00:00
#if (QT_VERSION >= QT_VERSION_CHECK(6,0,0))
#include <QtCore5Compat>
#endif
2019-09-29 05:13:01 +00:00
#pragma execution_character_set("utf-8")
2021-11-17 07:33:19 +00:00
#define TIMEMS qPrintable(QTime::currentTime().toString("HH:mm:ss zzz"))
#define STRDATETIME qPrintable(QDateTime::currentDateTime().toString("yyyy-MM-dd-HH-mm-ss"))
2021-05-30 07:59:42 +00:00
#include "appconfig.h"