Update contrib.
3 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
4 // All rights reserved.
5 // This component and the accompanying materials are made available
6 // under the terms of "Eclipse Public License v1.0"
7 // which accompanies this distribution, and is available
8 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 // Initial Contributors:
11 // Nokia Corporation - initial contribution.
20 #include "audiodevicesink.h"
22 // ---------------------------------------------------------------------------
24 // ---------------------------------------------------------------------------
26 CAudioDeviceSink::CAudioDeviceSink()
29 DP_CONTEXT(CAudioDeviceSink::CAudioDeviceSink *CD1*, CtxDevSound, DPLOCAL);
34 // ---------------------------------------------------------------------------
36 // ---------------------------------------------------------------------------
38 EXPORT_C CAudioDeviceSink* CAudioDeviceSink::NewL()
40 DP_STATIC_CONTEXT(CAudioDeviceSink::NewL *CD0*, CtxDevSound, DPLOCAL);
42 CAudioDeviceSink* self = new(ELeave)CAudioDeviceSink();
43 CleanupStack::PushL(self);
45 CleanupStack::Pop(self);
46 DP0_RET(self, "0x%x");
49 // ---------------------------------------------------------------------------
50 // Second phase constructor
51 // ---------------------------------------------------------------------------
53 void CAudioDeviceSink::ConstructL()
55 DP_CONTEXT(CAudioDeviceSink::ConstructL *CD1*, CtxDevSound, DPLOCAL);
60 // ---------------------------------------------------------------------------
62 // ---------------------------------------------------------------------------
64 CAudioDeviceSink::~CAudioDeviceSink()