HxVideoCaptor/external/HxUtils/include/HxLog.h

16 lines
187 B
C
Raw Permalink Normal View History

2024-01-21 22:22:39 +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