HxUtils/HxLog.h

16 lines
187 B
C
Raw Normal View History

2024-01-11 16:14:21 +08:00
#ifndef HXLOG_H
#define HXLOG_H
#include <QMutex>
class HxLog
{
public:
static void append(QString title, QString message);
private:
static QMutex mutex;
};
#endif // HXLOG_H