1 /* |
1 /* |
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
3 * All rights reserved. |
3 * All rights reserved. |
4 * This component and the accompanying materials are made available |
4 * This component and the accompanying materials are made available |
5 * under the terms of "Eclipse Public License v1.0" |
5 * under the terms of "Eclipse Public License v1.0" |
6 * which accompanies this distribution, and is available |
6 * which accompanies this distribution, and is available |
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
8 * |
8 * |
9 * Initial Contributors: |
9 * Initial Contributors: |
10 * Nokia Corporation - initial contribution. |
10 * Nokia Corporation - initial contribution. |
11 * |
11 * |
12 * Contributors: |
12 * Contributors: |
13 * |
13 * |
14 * Description: VOIP Audio Services |
14 * Description: VOIP Audio Services |
15 * |
15 * |
16 */ |
16 */ |
17 |
|
18 |
17 |
19 #include "VoIPSharedData.h" |
18 #include "VoIPSharedData.h" |
20 #include "VoIPDataBufferImpl.h" |
19 #include "VoIPDataBufferImpl.h" |
21 |
|
22 |
20 |
23 // ----------------------------------------------------------------------------- |
21 // ----------------------------------------------------------------------------- |
24 // CVoIPDataBufferImpl::NewL |
22 // CVoIPDataBufferImpl::NewL |
25 // ----------------------------------------------------------------------------- |
23 // ----------------------------------------------------------------------------- |
26 // |
24 // |
36 // ----------------------------------------------------------------------------- |
34 // ----------------------------------------------------------------------------- |
37 // CVoIPDataBufferImpl::CVoIPDataBufferImpl |
35 // CVoIPDataBufferImpl::CVoIPDataBufferImpl |
38 // ----------------------------------------------------------------------------- |
36 // ----------------------------------------------------------------------------- |
39 // |
37 // |
40 CVoIPDataBufferImpl::CVoIPDataBufferImpl() : |
38 CVoIPDataBufferImpl::CVoIPDataBufferImpl() : |
41 iPayloadPtr(0,0,0) |
39 iPayloadPtr(0, 0, 0) |
42 { |
40 { |
43 iType = CVoIPDataBuffer::EStandard; |
41 iType = CVoIPDataBuffer::EStandard; |
44 } |
42 } |
45 |
43 |
46 // ----------------------------------------------------------------------------- |
44 // ----------------------------------------------------------------------------- |
83 |
81 |
84 // ----------------------------------------------------------------------------- |
82 // ----------------------------------------------------------------------------- |
85 // CVoIPDataBufferImpl::GetBufferType |
83 // CVoIPDataBufferImpl::GetBufferType |
86 // ----------------------------------------------------------------------------- |
84 // ----------------------------------------------------------------------------- |
87 // |
85 // |
88 void CVoIPDataBufferImpl::GetBufferType(CVoIPDataBuffer::TVoIPBufferType& aType) |
86 void CVoIPDataBufferImpl::GetBufferType( |
|
87 CVoIPDataBuffer::TVoIPBufferType& aType) |
89 { |
88 { |
90 aType = iType; |
89 aType = iType; |
91 } |
90 } |
92 |
91 |
93 |
|
94 // End of file |
92 // End of file |