os/mm/devsoundextensions/effects/SrcOrientation/SourceOrientationMessageHandler/src/EffectDataQueItem.cpp
Update contrib.
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: This file contains the implementation of Effect Data Queue Item.
22 #include "EffectDataQueItem.h"
25 // ============================ MEMBER FUNCTIONS ===============================
27 // -----------------------------------------------------------------------------
28 // CEffectDataQueItem::CEffectDataQueItem
29 // C++ default constructor can NOT contain any code, that
31 // -----------------------------------------------------------------------------
33 CEffectDataQueItem::CEffectDataQueItem()
38 // -----------------------------------------------------------------------------
39 // CEffectDataQueItem::~CEffectDataQueItem
41 // -----------------------------------------------------------------------------
43 CEffectDataQueItem::~CEffectDataQueItem()
48 // -----------------------------------------------------------------------------
49 // CEffectDataQueItem::ConstructL
50 // Symbian 2nd phase constructor can leave.
51 // -----------------------------------------------------------------------------
53 void CEffectDataQueItem::ConstructL(
56 iData = (HBufC8*)aDataBuffer;
59 // -----------------------------------------------------------------------------
60 // CEffectDataQueItem::NewL
61 // Two-phased constructor.
62 // -----------------------------------------------------------------------------
64 CEffectDataQueItem* CEffectDataQueItem::NewL(
67 CEffectDataQueItem* self = new (ELeave) CEffectDataQueItem();
68 CleanupStack::PushL(self);
69 self->ConstructL(aDataBuffer);
70 CleanupStack::Pop(self);
74 // -----------------------------------------------------------------------------
75 // CEffectDataQueItem::EffectData
76 // Symbian 2nd phase constructor can leave.
77 // -----------------------------------------------------------------------------
79 TDesC8& CEffectDataQueItem::EffectData()