Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Dummy implementation of CActiveBackupClient class.
23 #include <connect/abclient.h>
28 CActiveBackupClient::CActiveBackupClient() : iClientSession(NULL), iABCallbackHandler(NULL)
33 EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL()
35 CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
36 CleanupStack::PushL(self);
38 CleanupStack::Pop(self);
42 EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL(MActiveBackupDataClient* aClient)
44 CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
45 CleanupStack::PushL(self);
46 self->ConstructL(aClient);
47 CleanupStack::Pop(self);
51 void CActiveBackupClient::ConstructL()
55 void CActiveBackupClient::ConstructL(MActiveBackupDataClient* /*aClient*/)
61 EXPORT_C CActiveBackupClient::~CActiveBackupClient()
65 EXPORT_C void CActiveBackupClient::BURModeInfoL(TDriveList& /*aDriveList*/, TBURPartType& /*aBackupType*/, TBackupIncType& /*aIncBackupType*/)
70 EXPORT_C TBool CActiveBackupClient::DoesPartialBURAffectMeL()
76 EXPORT_C void CActiveBackupClient::ConfirmReadyForBURL(TInt /*aErrorCode*/)
80 } // end of conn namespace