First public contribution.
1 // Copyright (c) 2006-2010 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.
18 #include "connect/abclient.h"
20 //The CActiveBackupClient implementation here is used by t_sqlbur and t_sqlbur2 tests.
21 //These 2 tests don't link agains the real secure backup client dll, so they use the
22 //CActiveBackupClient implementation here.
27 CActiveBackupClient::CActiveBackupClient() : iClientSession(NULL), iABCallbackHandler(NULL)
32 EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL()
34 CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
35 CleanupStack::PushL(self);
37 CleanupStack::Pop(self);
41 EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL(MActiveBackupDataClient* aClient)
43 CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
44 CleanupStack::PushL(self);
45 self->ConstructL(aClient);
46 CleanupStack::Pop(self);
50 void CActiveBackupClient::ConstructL()
54 void CActiveBackupClient::ConstructL(MActiveBackupDataClient* /*aClient*/)
60 EXPORT_C CActiveBackupClient::~CActiveBackupClient()
64 EXPORT_C void CActiveBackupClient::BURModeInfoL(TDriveList& /*aDriveList*/,
65 TBURPartType& /*aBackupType*/, TBackupIncType& /*aIncBackupType*/)
70 EXPORT_C TBool CActiveBackupClient::DoesPartialBURAffectMeL()
76 EXPORT_C void CActiveBackupClient::ConfirmReadyForBURL(TInt /*aErrorCode*/)
80 } // end of conn namespace