Update contrib.
2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
34 /// Pronounciation sort key
35 ESortKeyPronounciation
41 * Sort key. A pair of text and TSortKeyType.
46 inline TSortKey(const TDesC& aText, TSortKeyType aType) :
47 iText(aText), iType(aType) { }
49 inline const TDesC& Text() const { return iText; }
50 inline TSortKeyType Type() const { return iType; }
58 * An abstract array of TSortKey objects.
63 virtual ~MSortKeyArray() { }
64 virtual TInt SortKeyCount() const =0;
65 virtual TSortKey SortKeyAt(TInt aIndex) const =0;
76 * Compares two MSortKeyArrays.
79 * @param aLhs the left-hand-side sort key array.
80 * @param aRhs the right-hand-side sort key array.
81 * @return 0 if aLhs and aRhs have equal sorting order.
82 * >0 if aLhs is sorted after aRhs
83 * <0 if aLhs is sorted before aRhs.
85 virtual TInt CompareItems(const MSortKeyArray& aLhs, const MSortKeyArray& aRhs) const =0;
89 * CSortUtil instance gives access to MSortUtil interface.
91 NONSHARABLE_CLASS(CSortUtil) : public CBase
93 public: // Constructors and destructor
94 IMPORT_C static CSortUtil* NewL();
97 public: // New functions
98 MSortUtil* Interface() {return iInterface;}
100 private: // Private constructors
105 MSortUtil* iInterface;