HxVideoCaptor/external/HxUtils/include/HxLog.h

16 lines
187 B
C++

#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