|
1 /* |
|
2 * Copyright (c) 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: MR organizer definition |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_MRINFOORGANIZER_H |
|
20 #define M_MRINFOORGANIZER_H |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 /** |
|
25 * MMROrganizer defines meeting request organizer. |
|
26 */ |
|
27 class MMROrganizer |
|
28 { |
|
29 public: // Destruction |
|
30 |
|
31 /** |
|
32 * Virtual destructor. |
|
33 */ |
|
34 virtual ~MMROrganizer() { } |
|
35 |
|
36 public: // Interface |
|
37 /** |
|
38 * Sets MR organizer email address. |
|
39 * @param aAddress Email address. |
|
40 */ |
|
41 virtual void SetAddressL(const TDesC& aAddress ) = 0; |
|
42 |
|
43 /** |
|
44 * Fetches MR organizer email address. |
|
45 * @return MR Organzier email address. KNullDesC, if address is not set. |
|
46 */ |
|
47 virtual const TDesC& Address() const = 0; |
|
48 |
|
49 /** |
|
50 * Sets MR organizer common name. |
|
51 * @param aCommonName MR organizer common name. |
|
52 */ |
|
53 virtual void SetCommonNameL(const TDesC& aCommonName) = 0; |
|
54 |
|
55 /** |
|
56 * Fetches MR Organizer common name. |
|
57 * @return MR Organzer common name. KNullDesC, if common name is not set. |
|
58 */ |
|
59 virtual const TDesC& CommonName() const = 0; |
|
60 }; |
|
61 |
|
62 |
|
63 #endif // M_MRINFOORGANIZER_H |