memspyui/ui/hb/src/main.cpp
branchRCL_3
changeset 21 b3cee849fa46
equal deleted inserted replaced
20:48060abbbeaf 21:b3cee849fa46
       
     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 #include <HbApplication>
       
    19 #include <QMessageBox>
       
    20 #include <HbMainWindow>
       
    21 
       
    22 #include "enginewrapper.h"
       
    23 #include "memspyview.h"
       
    24 #include "memspyprocessview.h"
       
    25 #include "viewmanager.h"
       
    26 
       
    27 int main(int argc, char *argv[])
       
    28 {
       
    29     HbApplication app(argc, argv);
       
    30 	
       
    31     EngineWrapper engine;
       
    32     if (!engine.initialize()) {
       
    33 		QMessageBox::critical(0, "Error", "Engine failed to initialize. Closing.");
       
    34 		return 1;
       
    35     }
       
    36         
       
    37     HbMainWindow window;
       
    38     ViewManager viewManager(window, engine);
       
    39     viewManager.showView(MainView);
       
    40 	
       
    41     window.show();
       
    42 	return app.exec();
       
    43 }