blob: 9fce1135a160c2b156fa7f6afbde13b250c39fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef PRINTUTILS_H_
#define PRINTUTILS_H_
#include <QString>
void PRINT(const QString &msg);
#define PRINTF(_fmt, ...) do { QString _m; _m.sprintf(_fmt, ##__VA_ARGS__); PRINT(_m); } while (0)
#define PRINTA(_fmt, ...) do { QString _m = QString(_fmt).arg(__VA_ARGS__); PRINT(_m); } while (0)
#endif
|