diff -r 73a1feb507fb -r bc78a40cd63c mmshplugins/mmshaoplugin/tsrc/ut_aoplugin/Stubs/inc/ccallinfos_stub.inl --- a/mmshplugins/mmshaoplugin/tsrc/ut_aoplugin/Stubs/inc/ccallinfos_stub.inl Tue Aug 31 15:12:07 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,89 +0,0 @@ -/* -* Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: ?Description -* -*/ - - -#include - -const TInt KCallServiceId = 5; - -// --------------------------------------------------------------------------- -// C++ constructor -// --------------------------------------------------------------------------- -// -CCallInfos::CCallInfos() - { - //Nothing to be done Here. - } - -// ----------------------------------------------------------------------------- -// Constructor. -// ----------------------------------------------------------------------------- -// -inline CCallInfos* CCallInfos::NewL() - { - return new( ELeave )CCallInfos(); - } - -// ----------------------------------------------------------------------------- -// Constructor. -// ----------------------------------------------------------------------------- -// -inline CCallInfos* CCallInfos::NewLC() - { - CCallInfos* self = new( ELeave )CCallInfos(); - CleanupStack::PushL( self ); - return self; - } - - -// ----------------------------------------------------------------------------- -// Desctructor. -// ----------------------------------------------------------------------------- -// -inline CCallInfos::~CCallInfos() - { - if ( iCallInfos.Count()) - { - iCallInfos.Reset(); - } - iCallInfos.Close(); - } - -// ----------------------------------------------------------------------------- -// Returns information about all calls. -// ----------------------------------------------------------------------------- -// -inline const RArray& CCallInfos::CallInfos( ) const - { - return iCallInfos; - } - - - -// ----------------------------------------------------------------------------- -// Add Dummy Call Info. -// ----------------------------------------------------------------------------- -// -inline void CCallInfos::AddCallInfosL( ) - { - } - - -// End of File. - - -