Cleaning up dead code from main.cpp and common.h, and moving global
[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
15 #ifdef VERBOSE 
16 #include <QDebug>
17 #define TRACE qDebug() << "[" << __FILE__ << "]" << __func__ << "():" << __LINE__;
18 #else
19 #define TRACE
20 #endif
21
22 QString stripLineID(QString lineid);
23
24 #endif // COMMON_H