os/persistentdata/persistentstorage/sql/TEST/t_dummyabclient.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Dummy implementation of CActiveBackupClient class.
    15 // 
    16 //
    17 
    18 #include "connect/abclient.h"
    19 
    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.
    23 
    24 namespace conn
    25 	{
    26 
    27 	CActiveBackupClient::CActiveBackupClient() : iClientSession(NULL), iABCallbackHandler(NULL)
    28 		{
    29 		}
    30 
    31 
    32 	EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL()
    33 		{
    34 		CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
    35 		CleanupStack::PushL(self);
    36 		self->ConstructL();
    37 		CleanupStack::Pop(self);
    38 		return self;
    39 		}
    40 
    41 	EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL(MActiveBackupDataClient* aClient)
    42 		{
    43 		CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
    44 		CleanupStack::PushL(self);
    45 		self->ConstructL(aClient);
    46 		CleanupStack::Pop(self);
    47 		return self;
    48 		}
    49 
    50 	void CActiveBackupClient::ConstructL()
    51 		{
    52 		}
    53 
    54 	void CActiveBackupClient::ConstructL(MActiveBackupDataClient* /*aClient*/)
    55 		{
    56 		ConstructL();
    57 		}
    58 
    59 
    60 	EXPORT_C CActiveBackupClient::~CActiveBackupClient()
    61 		{
    62 		}
    63 
    64     EXPORT_C void CActiveBackupClient::BURModeInfoL(TDriveList& /*aDriveList*/,
    65     		TBURPartType& /*aBackupType*/, TBackupIncType& /*aIncBackupType*/)
    66 		{
    67 		}
    68 
    69 
    70     EXPORT_C TBool CActiveBackupClient::DoesPartialBURAffectMeL()
    71 		{
    72 		return ETrue;
    73 		}
    74 
    75 
    76     EXPORT_C void CActiveBackupClient::ConfirmReadyForBURL(TInt /*aErrorCode*/)
    77 		{
    78 		}
    79 
    80 	} // end of conn namespace