mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-30 15:06:52 +08:00
12 lines
182 B
C++
12 lines
182 B
C++
#ifndef LOG_H
|
|
#define LOG_H
|
|
#include <QtCore/qstring.h>
|
|
|
|
namespace Log
|
|
{
|
|
QString prettyProductInfoWrapper();
|
|
void setup(const QString &app,int level = 4);
|
|
}
|
|
|
|
#endif // LOG_H
|