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.
23 #ifndef SORTUTILIMPL_H
24 #define SORTUTILIMPL_H
31 namespace SortUtilImpl
35 * Returns aText with all leading whitespace characters stripped from it.
37 TPtrC StripLeadingWhiteSpace(const TDesC& aText);
40 * Searches for the next nonempty key in a sort key array.
42 * @param aKeys the sort key array to search.
43 * @param aType the sort key type to search for.
44 * @param aIndex the index where to start the search from. If a key is
45 * returned the index is incremented.
46 * @return the first nonempty sort key's text or empty string if
47 * aIndex > aKeys.SortKeyCount(). Any leading whitespace in the
48 * sort key text is removed in the returned string.
50 TPtrC FindNextNonEmptyKey
51 (const MSortKeyArray& aKeys,
55 } // namespace SortUtilImpl
57 #endif // SORTUTILIMPL_H