loadgen/ui/hb/src/main.cpp
changeset 55 2d9cac8919d3
parent 53 819e59dfc032
child 56 392f7045e621
equal deleted inserted replaced
53:819e59dfc032 55:2d9cac8919d3
     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 <hbmainwindow.h>
       
    19 #include <hbapplication.h>
       
    20 #include <eikenv.h>
       
    21 #include "mainview.h"
       
    22 
       
    23 
       
    24 int main(int argc, char *argv[])
       
    25 {
       
    26 	HbApplication app(argc, argv);
       
    27     HbMainWindow mainWindow;
       
    28     
       
    29     // set as system application to prevent getting shut down events 
       
    30     CEikonEnv::Static()->SetSystem( ETrue );
       
    31     
       
    32     //Create main view
       
    33     MainView* view = new MainView(mainWindow);
       
    34 
       
    35     //initialize main view
       
    36     view->init(app);
       
    37 	// Add Views to main window and reveal it.
       
    38     mainWindow.addView(view);
       
    39     mainWindow.show();
       
    40 
       
    41     return app.exec();
       
    42 }