calendarui/application/src/main.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 06 Jul 2010 14:14:56 +0300
changeset 50 579cc610882e
parent 49 5de72ea7a065
child 58 ef813d54df51
permissions -rw-r--r--
Revision: 201025 Kit: 2010127

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  main implementation.
*
*/


#include <QtGui>
#include <xqserviceutil.h>
#include <hbapplication.h>
#include <hbmainwindow.h>
#include <hbtranslator.h>
#include "calencontroller.h"
#include "calenserviceprovider.h"


 int main(int argc, char *argv[])
    {
    HbApplication app(argc, argv);
    
    // Main window for providing the scene context
	HbMainWindow window;
	
    //For translation, loading and installing translator
	HbTranslator translator("calendar");
	translator.loadCommon();
	
    // Backup and restore code need to write here.
	
    CCalenController *controller = new CCalenController();

	int retValue = 0;
	if (controller) {
	    controller->constructController();
    	// Create the Calendar service provider
	    CalenServiceProvider service(controller);
    
    	retValue = app.exec();
    
	    // delete the controller
    	controller->ReleaseCustomisations();
	    controller->Release();
	}
    return retValue;
    }


 //End of file