dlnasrv_exampleapp/src/main.cpp
branchIOP_Improvements
changeset 40 08b5eae9f9ff
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
       
     1 /*
       
     2 * Copyright (c) 2010 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 #include <qapplication.h>
       
    19 
       
    20 #include "exampleappui.h"
       
    21 #include "trace.h"
       
    22 
       
    23 int main(int argc, char *argv[])
       
    24 {
       
    25     FUNC_LOG
       
    26     
       
    27     QApplication app(argc, argv);
       
    28 
       
    29     ExampleAppUi exampleAppUi;
       
    30     exampleAppUi.construct();
       
    31     exampleAppUi.showMaximized();
       
    32     
       
    33     return app.exec();
       
    34 };