sl@0: // Copyright (c) 2005-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: // Dummy implementation of CActiveBackupClient class. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @released sl@0: */ sl@0: sl@0: #include sl@0: sl@0: namespace conn sl@0: { sl@0: sl@0: CActiveBackupClient::CActiveBackupClient() : iClientSession(NULL), iABCallbackHandler(NULL) sl@0: { sl@0: } sl@0: sl@0: sl@0: EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL() sl@0: { sl@0: CActiveBackupClient* self = new (ELeave) CActiveBackupClient(); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL(MActiveBackupDataClient* aClient) sl@0: { sl@0: CActiveBackupClient* self = new (ELeave) CActiveBackupClient(); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aClient); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CActiveBackupClient::ConstructL() sl@0: { sl@0: } sl@0: sl@0: void CActiveBackupClient::ConstructL(MActiveBackupDataClient* /*aClient*/) sl@0: { sl@0: ConstructL(); sl@0: } sl@0: sl@0: sl@0: EXPORT_C CActiveBackupClient::~CActiveBackupClient() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void CActiveBackupClient::BURModeInfoL(TDriveList& /*aDriveList*/, TBURPartType& /*aBackupType*/, TBackupIncType& /*aIncBackupType*/) sl@0: { sl@0: } sl@0: sl@0: sl@0: EXPORT_C TBool CActiveBackupClient::DoesPartialBURAffectMeL() sl@0: { sl@0: return ETrue; sl@0: } sl@0: sl@0: sl@0: EXPORT_C void CActiveBackupClient::ConfirmReadyForBURL(TInt /*aErrorCode*/) sl@0: { sl@0: } sl@0: sl@0: } // end of conn namespace