Files
frelay/Util/Util.h

17 lines
323 B
C
Raw Normal View History

2025-06-14 23:25:16 +08:00
#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