1 /* |
|
2 * Copyright (c) 2002 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: Declaration of the TApListItemKey class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 |
|
21 #include "ApListItemList.h" |
|
22 #include "ApListItem.h" |
|
23 #include "ApListItemKey.h" |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 |
|
28 // ================= MEMBER FUNCTIONS ======================= |
|
29 // --------------------------------------------------------- |
|
30 // TApListItemNameKey::SetPtr() |
|
31 // --------------------------------------------------------- |
|
32 // |
|
33 void TApListItemNameKey::SetPtr( CApListItemList* aPtr ) |
|
34 { |
|
35 } |
|
36 |
|
37 |
|
38 // --------------------------------------------------------- |
|
39 // TApListItemNameKey::Compare() |
|
40 // --------------------------------------------------------- |
|
41 // |
|
42 TInt TApListItemNameKey::Compare( TInt aLeft,TInt aRight ) const |
|
43 { |
|
44 return 0; |
|
45 } |
|
46 |
|
47 |
|
48 // --------------------------------------------------------- |
|
49 // TApListItemNameKey::At() |
|
50 // --------------------------------------------------------- |
|
51 // |
|
52 TAny* TApListItemNameKey::At( TInt anIndex ) const |
|
53 { |
|
54 return NULL; |
|
55 } |
|
56 |
|
57 |
|
58 |
|
59 // --------------------------------------------------------- |
|
60 // TApListItemNameKey::TApListItemNameKey() |
|
61 // --------------------------------------------------------- |
|
62 // |
|
63 TApListItemNameKey::TApListItemNameKey( TBool aAscending ) |
|
64 :TKeyArrayFix( 0, ECmpCollated ) |
|
65 { |
|
66 } |
|
67 |
|
68 |
|
69 |
|
70 |
|
71 |
|
72 |
|
73 // --------------------------------------------------------- |
|
74 // TApListItemUidKey |
|
75 // --------------------------------------------------------- |
|
76 |
|
77 |
|
78 // --------------------------------------------------------- |
|
79 // TApListItemUidKey::SetPtr |
|
80 // --------------------------------------------------------- |
|
81 // |
|
82 void TApListItemUidKey::SetPtr( CApListItemList* aPtr ) |
|
83 { |
|
84 } |
|
85 |
|
86 |
|
87 // --------------------------------------------------------- |
|
88 // TApListItemUidKey::Compare |
|
89 // --------------------------------------------------------- |
|
90 // |
|
91 TInt TApListItemUidKey::Compare( TInt aLeft,TInt aRight ) const |
|
92 { |
|
93 return 0; |
|
94 } |
|
95 |
|
96 |
|
97 // --------------------------------------------------------- |
|
98 // TApListItemUidKey::At |
|
99 // --------------------------------------------------------- |
|
100 // |
|
101 TAny* TApListItemUidKey::At( TInt anIndex ) const |
|
102 { |
|
103 return NULL; |
|
104 } |
|
105 |
|
106 |
|
107 |
|
108 // --------------------------------------------------------- |
|
109 // TApListItemUidKey::TApListItemUidKey |
|
110 // --------------------------------------------------------- |
|
111 // |
|
112 TApListItemUidKey::TApListItemUidKey( TBool aAscending ) |
|
113 :TKeyArrayFix( 0, ECmpCollated ) |
|
114 { |
|
115 } |
|
116 |
|
117 |
|
118 // End of File |
|