blob: 4fff11481d695a271c943406571979f89f603c05 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _QV_DEBUG_ERROR
#define _QV_DEBUG_ERROR
class QvDebugError {
public:
static void post(const char *methodName, const char *formatString ...);
};
#endif /* _QV_DEBUG_ERROR */
|