sl@0: // Copyright (c) 2001-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: // sl@0: sl@0: #include "SoundDeviceBody.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: /* sl@0: * Default Constructor. sl@0: */ sl@0: CMMFDevSound::CBody::CBody() sl@0: { sl@0: } sl@0: sl@0: /* sl@0: * -doxygen comments moved to header- sl@0: * sl@0: * Destructor. sl@0: * sl@0: * Deletes all objects and releases all resource owned by this sl@0: * instance. sl@0: * sl@0: */ sl@0: CMMFDevSound::CBody::~CBody() sl@0: { sl@0: delete iPlugin; sl@0: REComSession::DestroyedImplementation(iDestructorKey); sl@0: REComSession::FinalClose(); sl@0: } sl@0: sl@0: /* sl@0: * -doxygen comments moved to header- sl@0: * sl@0: * Constructs, and returns a pointer to, a new CMMFDevSound::CBody object. sl@0: * sl@0: * Leaves on failure. sl@0: * sl@0: */ sl@0: CMMFDevSound::CBody* CMMFDevSound::CBody::NewL() sl@0: { sl@0: CBody* self = new (ELeave) CBody; sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: /* sl@0: * -doxygen comments moved to header- sl@0: * sl@0: * Second phase constructor. sl@0: * sl@0: */ sl@0: void CMMFDevSound::CBody::ConstructL() sl@0: { sl@0: TUid interfaceUid = {KMmfUidDevSoundPlugin}; sl@0: iPlugin = sl@0: static_cast sl@0: (MmPluginUtils::CreateImplementationL(interfaceUid, iDestructorKey, KDevSoundPluginMatchString, KRomOnlyResolverUid)); sl@0: } sl@0: sl@0: sl@0: