equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-2008 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: message container info interface |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __MIMCVENGINEMESSAGECONTAINERINFO_H__ |
|
20 #define __MIMCVENGINEMESSAGECONTAINERINFO_H__ |
|
21 |
|
22 // FORWARD CLASS DECLERATIONS |
|
23 |
|
24 // CLASS DECLARATION |
|
25 |
|
26 /** |
|
27 * Message container information provider |
|
28 * |
|
29 * @lib imcvengine.dll |
|
30 * @since 5.0 |
|
31 */ |
|
32 class MIMCVEngineMessageContainerInfo |
|
33 { |
|
34 |
|
35 public: // Interface |
|
36 |
|
37 |
|
38 /** |
|
39 * Part of Id of container |
|
40 * @return Conversation Party id of container. |
|
41 */ |
|
42 virtual const TDesC& Target() const = 0; |
|
43 |
|
44 /** |
|
45 * Returns target id to be used for |
|
46 * comparisons. |
|
47 * @since S60 v3.1 |
|
48 * @return Target id. |
|
49 */ |
|
50 virtual const TDesC& ComparableTarget() const = 0; |
|
51 |
|
52 |
|
53 protected: // For protection. |
|
54 |
|
55 /** |
|
56 * Destructor |
|
57 */ |
|
58 virtual ~MIMCVEngineMessageContainerInfo(){} |
|
59 }; |
|
60 |
|
61 #endif // __MIMCVENGINEMESSAGECONTAINERINFO_H__ |
|
62 |
|
63 // End of File |