First public contribution.
1 // Copyright (c) 2001-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.
16 #include "SoundDeviceBody.h"
17 #include <mmf/plugin/devsoundplugin.h>
18 #include <mmf/plugin/mmfdevsound.hrh>
19 #include <ecom/ecom.h>
20 #include <mm/mmpluginutils.h>
24 * Default Constructor.
26 CMMFDevSound::CBody::CBody()
31 * -doxygen comments moved to header-
35 * Deletes all objects and releases all resource owned by this
39 CMMFDevSound::CBody::~CBody()
42 REComSession::DestroyedImplementation(iDestructorKey);
43 REComSession::FinalClose();
47 * -doxygen comments moved to header-
49 * Constructs, and returns a pointer to, a new CMMFDevSound::CBody object.
54 CMMFDevSound::CBody* CMMFDevSound::CBody::NewL()
56 CBody* self = new (ELeave) CBody;
57 CleanupStack::PushL(self);
64 * -doxygen comments moved to header-
66 * Second phase constructor.
69 void CMMFDevSound::CBody::ConstructL()
71 TUid interfaceUid = {KMmfUidDevSoundPlugin};
73 static_cast<MMMFDevSoundPlugin*>
74 (MmPluginUtils::CreateImplementationL(interfaceUid, iDestructorKey, KDevSoundPluginMatchString, KRomOnlyResolverUid));