author | hgs |
Thu, 08 Jul 2010 12:44:18 +0300 | |
changeset 36 | ba22309243a1 |
parent 28 | 075425b8d9a4 |
child 37 | 451b2e1545b2 |
permissions | -rw-r--r-- |
24 | 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 |
// System includes |
|
19 |
#include <HbTranslator> |
|
20 |
||
21 |
// User includes |
|
22 |
#include "radioapplication.h" |
|
23 |
#include "radiologger.h" |
|
24 |
||
25 |
||
26 |
/*! |
|
27 |
* Runs the application |
|
28 |
*/ |
|
29 |
int main( int argc, char* argv[] ) |
|
30 |
{ |
|
31 |
INSTALL_MESSAGE_HANDLER // Installs the file tracer if enabled |
|
32 |
||
33 |
LOG_TIMESTAMP( "Tesla started" ); |
|
34 |
||
35 |
RadioApplication app( argc, argv ); |
|
36 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
37 |
HbTranslator translator; |
24 | 38 |
|
39 |
const int returnValue = app.exec(); |
|
40 |
||
41 |
UNINSTALL_MESSAGE_HANDLER // Uninstalls the file tracer |
|
42 |
||
43 |
return returnValue; |
|
44 |
} |