radioapp/radioapplication/src/main.cpp
branchRCL_3
changeset 19 cce62ebc198e
equal deleted inserted replaced
18:1a6714c53019 19:cce62ebc198e
       
     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 
       
    37     HbTranslator translator;
       
    38 
       
    39     const int returnValue = app.exec();
       
    40 
       
    41     UNINSTALL_MESSAGE_HANDLER // Uninstalls the file tracer
       
    42 
       
    43     return returnValue;
       
    44 }