creator/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 
       
    19 #include <hbapplication.h>
       
    20 #include <hbmainwindow.h>
       
    21 #include <hbview.h>
       
    22 
       
    23 #include "mainview.h"
       
    24 #include "enginewrapper.h"
       
    25 
       
    26 int main(int argc, char *argv[])
       
    27 {
       
    28 	
       
    29     
       
    30 
       
    31     HbApplication app(argc, argv);
       
    32     HbMainWindow mainWindow;
       
    33     
       
    34     //Create main view
       
    35     MainView* view = new MainView(mainWindow);
       
    36 
       
    37     //initialize main view
       
    38     view->init(app);
       
    39 	
       
    40 	// Add View to main window and reveal it.
       
    41     mainWindow.addView(view);
       
    42     mainWindow.show();
       
    43     
       
    44     int result = app.exec();
       
    45    
       
    46     return result;
       
    47 }
       
    48