Initial Import
[profile/ivi/connman-qt.git] / libconnman-qt / debug.h
1 /*   -*- Mode: C++ -*-
2  * meegotouchcp-connman - connectivity plugin for duicontrolpanel
3  * Copyright © 2010, Intel Corporation.
4  *
5  * This program is licensed under the terms and conditions of the
6  * Apache License, version 2.0.  The full text of the Apache License is at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  */
10 #ifndef DEBUG_H
11 #define DEBUG_H
12
13 #include <QString>
14
15 #define STR(qstring) qstring.toLatin1().constData()
16
17   #include <QtDebug>
18   #define MDEBUG(...) qDebug(__VA_ARGS__)
19   #define MWARNING(...) qWarning(__VA_ARGS__)
20   #define MCRITICAL(...) qCritical(__VA__ARGS__)
21
22 #endif //DEBUG_H