|
1 /* |
|
2 * Copyright (c) 2002-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: Implementation of CMessageAddress interface. |
|
15 * Encapsulates message real address and alias. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 // INCLUDE FILES |
|
23 #include "MessageAddressImpl.h" |
|
24 #include <msvstore.h> |
|
25 #include <sendui.h> |
|
26 |
|
27 |
|
28 // ============================ MEMBER FUNCTIONS =============================== |
|
29 |
|
30 // ----------------------------------------------------------------------------- |
|
31 // CMessageDataImpl::CMessageAddressImpl |
|
32 // C++ default constructor can NOT contain any code, that |
|
33 // might leave. |
|
34 // ----------------------------------------------------------------------------- |
|
35 // |
|
36 CMessageAddressImpl::CMessageAddressImpl() |
|
37 { |
|
38 } |
|
39 |
|
40 // Destructor |
|
41 CMessageAddressImpl::~CMessageAddressImpl() |
|
42 { |
|
43 } |
|
44 |
|
45 |
|
46 // ----------------------------------------------------------------------------- |
|
47 // CMessageAddressImpl::SetAddressL |
|
48 // Sets real address. |
|
49 // (other items were commented in a header). |
|
50 // ----------------------------------------------------------------------------- |
|
51 // |
|
52 void CMessageAddressImpl::SetAddressL( const TDesC& aAddress ) |
|
53 { |
|
54 } |
|
55 |
|
56 // ----------------------------------------------------------------------------- |
|
57 // CMessageAddressImpl::SetAliasL |
|
58 // Sets alias for real address. |
|
59 // (other items were commented in a header). |
|
60 // ----------------------------------------------------------------------------- |
|
61 // |
|
62 void CMessageAddressImpl::SetAliasL( const TDesC& aAlias ) |
|
63 { |
|
64 } |
|
65 |
|
66 // ----------------------------------------------------------------------------- |
|
67 // CMessageAddressImpl::ExternalizeL |
|
68 // ----------------------------------------------------------------------------- |
|
69 // |
|
70 void CMessageAddressImpl::ExternalizeL( RWriteStream& aStream ) const |
|
71 { |
|
72 } |
|
73 |
|
74 // ----------------------------------------------------------------------------- |
|
75 // CMessageAddressImpl::InternalizeL |
|
76 // ----------------------------------------------------------------------------- |
|
77 // |
|
78 void CMessageAddressImpl::InternalizeL( RReadStream& aStream ) |
|
79 { |
|
80 } |
|
81 |
|
82 // End of File |