blob: 1630566527ef1bfdf5a099abcbe6174c436ddbf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LOGPRIMITIVE_H
#define LOGPRIMITIVE_H
#include <QTextStream>
inline QTextStream& logPrimitive()
{
static QTextStream r{stdout};
return r;
}
#endif // LOGPRIMITIVE_H
|