blob: ae88d78249d86eb59d80dae85ec4bc7360f7dccc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __UTILS_H__
#define __UTILS_H__
#include <QDebug>
#define DEBUGF1 qlogger
#define DEBUGF2(...)
extern int qlogger(const char* fmt,...);
extern int qlogger(const QString& s);
#endif // __UTILS_H__
|