equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef DEBUG_TRACES_H_ |
|
19 #define DEBUG_TRACES_H_ |
|
20 |
|
21 #ifdef _DEBUG |
|
22 #include <QtDebug> |
|
23 #define _DEBUG_TRACES_ |
|
24 |
|
25 #define QDEBUG_WRITE(str) {qDebug() << str;} |
|
26 #define QDEBUG_WRITE_FORMAT(str, val) {qDebug() << str << val;} |
|
27 #define QCRITICAL_WRITE(str) {qCritical() << str;} |
|
28 #define QCRITICAL_WRITE_FORMAT(str, val) {qCritical() << str << val;} |
|
29 #else |
|
30 #undef _DEBUG_TRACES_ |
|
31 |
|
32 #define QDEBUG_WRITE(str) |
|
33 #define QDEBUG_WRITE_FORMAT(str, val) |
|
34 #define QCRITICAL_WRITE(str) |
|
35 #define QCRITICAL_WRITE_FORMAT(str, val) |
|
36 #endif // _DEBUG |
|
37 #endif // DEBUG_TRACES_H_ |