|
1 /* |
|
2 * Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Inline methods |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 inline CImpsFields* CImpsSubSession::ImpsFields() const |
|
20 { |
|
21 return iSession->ImpsFields(); |
|
22 } |
|
23 |
|
24 inline HBufC8* CImpsSubSession::StreamBuf() const |
|
25 { |
|
26 return iSession->StreamBuf(); |
|
27 } |
|
28 |
|
29 inline HBufC8** CImpsSubSession::StreamBufAddr() |
|
30 { |
|
31 return iSession->StreamBufAddr(); |
|
32 } |
|
33 |
|
34 inline TBool CImpsSubSession::StatusObserver( ) const |
|
35 { |
|
36 return iStatusObserver; |
|
37 } |
|
38 |
|
39 inline TImpsEventType CImpsSubSession::Type() const |
|
40 { |
|
41 return iServiceType; |
|
42 } |
|
43 |
|
44 inline void CImpsSubSession::NewFieldsL() |
|
45 { |
|
46 iSession->NewFieldsL(); |
|
47 } |
|
48 |
|
49 inline void CImpsSubSession::SetStatusObserver( TBool aVal ) |
|
50 { |
|
51 iStatusObserver = aVal; |
|
52 } |
|
53 |
|
54 |
|
55 inline void CImpsSubSession::SetDetailedError( TBool aVal ) |
|
56 { |
|
57 iDetailedError = aVal; |
|
58 } |
|
59 |
|
60 inline void CImpsSubSession::SetHandle( TUint aVal ) |
|
61 { |
|
62 iSubHandle = aVal; |
|
63 } |
|
64 |
|
65 inline TUint CImpsSubSession::Handle() |
|
66 { |
|
67 return iSubHandle; |
|
68 } |
|
69 |
|
70 inline RMessagePtr2 CImpsSubSession::EventMsg() |
|
71 { |
|
72 return iEventMsg; |
|
73 } |
|
74 |
|
75 |