sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "Baksrv.h" sl@0: #include "backup_std.h" sl@0: #include "BASCHED.H" sl@0: sl@0: void LaunchBackupServerL() sl@0: { sl@0: CBaServBackupScheduler* scheduler = new (ELeave) CBaServBackupScheduler; sl@0: CleanupStack::PushL(scheduler); sl@0: CActiveScheduler::Install(scheduler); sl@0: sl@0: CBaBackupServer* server = CBaBackupServer::NewL(); sl@0: sl@0: CleanupStack::PushL(server); sl@0: server->ConstructL(); sl@0: sl@0: RProcess::Rendezvous(KErrNone); sl@0: sl@0: CActiveScheduler::Start(); sl@0: sl@0: CleanupStack::PopAndDestroy(server); sl@0: CleanupStack::PopAndDestroy(scheduler); sl@0: sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main () sl@0: { sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); sl@0: TInt err = KErrNoMemory; sl@0: sl@0: if (cleanup) sl@0: { sl@0: TRAP(err, LaunchBackupServerL()); sl@0: delete cleanup; sl@0: } sl@0: sl@0: return err; sl@0: } sl@0: