add: spdlog and basic client code.

This commit is contained in:
2025-06-14 23:25:16 +08:00
parent 16572fa29c
commit 3f74ca3b1b
116 changed files with 26940 additions and 4 deletions

17
Util/Util.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef UTIL_H
#define UTIL_H
#include <QObject>
class Util : public QObject
{
Q_OBJECT
public:
Util();
public:
static void InitLogger(const QString& logPath, const QString& mark);
static void ConsoleMsgHander(QtMsgType type, const QMessageLogContext& context, const QString& msg);
};
#endif // UTIL_H