equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: |
|
15 * Inline methods for CMmsMMBoxMessageHeaders |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 inline TInt CMmsMMBoxMessageHeaders::MmsStore() const |
|
22 { |
|
23 return iMmsStore; |
|
24 } |
|
25 |
|
26 inline void CMmsMMBoxMessageHeaders::SetMmsStore ( TInt aMmsStore ) |
|
27 { |
|
28 iMmsStore = aMmsStore; |
|
29 } |
|
30 |
|
31 inline TInt CMmsMMBoxMessageHeaders::MmsMMState() const |
|
32 { |
|
33 return iMmsMMState; |
|
34 } |
|
35 |
|
36 inline void CMmsMMBoxMessageHeaders::SetMMState( TInt aMmsMMState ) |
|
37 { |
|
38 iMmsMMState = aMmsMMState; |
|
39 } |
|
40 |
|
41 inline TInt CMmsMMBoxMessageHeaders::MmsStored() const |
|
42 { |
|
43 return iMmsStored; |
|
44 } |
|
45 |
|
46 inline void CMmsMMBoxMessageHeaders::SetMmsStored( TInt aMmsStored ) |
|
47 { |
|
48 iMmsStored = aMmsStored; |
|
49 } |
|
50 |
|
51 inline TInt CMmsMMBoxMessageHeaders::MmsStoreStatus() const |
|
52 { |
|
53 return iMmsStoreStatus; |
|
54 } |
|
55 |
|
56 inline void CMmsMMBoxMessageHeaders::SetMmsStoreStatus( TInt aMmsStoreStatus ) |
|
57 { |
|
58 iMmsStoreStatus = aMmsStoreStatus; |
|
59 } |
|
60 |
|
61 inline CDesC8Array& CMmsMMBoxMessageHeaders::ContentLocationList() const |
|
62 { |
|
63 return *iContentLocationArray; |
|
64 } |
|
65 |
|
66 inline RPointerArray<CMmsMMBoxFlags>& CMmsMMBoxMessageHeaders::KeywordArray() |
|
67 { |
|
68 return iKeywordArray; //lint !e1536 |
|
69 } |
|
70 |
|
71 |
|
72 // End of File |