22 lines
510 B
C
22 lines
510 B
C
|
#include <QtCore>
|
|||
|
#include <QtGui>
|
|||
|
#include <QtNetwork>
|
|||
|
|
|||
|
#if (QT_VERSION >= QT_VERSION_CHECK(5,0,0))
|
|||
|
#include <QtWidgets>
|
|||
|
#ifdef websocket
|
|||
|
#include <QtWebSockets>
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
|
|||
|
#if (QT_VERSION >= QT_VERSION_CHECK(6,0,0))
|
|||
|
#include <QtCore5Compat>
|
|||
|
#endif
|
|||
|
|
|||
|
#pragma execution_character_set("utf-8")
|
|||
|
#define TIMEMS qPrintable(QTime::currentTime().toString("HH:mm:ss zzz"))
|
|||
|
#define STRDATETIME qPrintable(QDateTime::currentDateTime().toString("yyyy-MM-dd-HH-mm-ss"))
|
|||
|
|
|||
|
#include "appconfig.h"
|
|||
|
#include "appdata.h"
|