Initial Import
[profile/ivi/hfdialer.git] / src / common.h
1 /*
2  * hfdialer - Hands Free Voice Call Manager
3  * Copyright (c) 2012, 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
11 #ifndef COMMON_H
12 #define COMMON_H
13
14 class QString;
15
16 #ifdef VERBOSE 
17 #include <QDebug>
18 #define TRACE qDebug() << "[" << __FILE__ << "]" << __func__ << "():" << __LINE__;
19 #else
20 #define TRACE
21 #endif
22
23 QString stripLineID(QString lineid);
24
25 #endif // COMMON_H
26
27 /* Local Variables:      */
28 /* mode:c++              */
29 /* c-basic-offset:4      */
30 /* indent-tabs-mode: nil */
31 /* End:                  */