Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // RMap template class declaration.
21 #include "D32Assert.h"
24 (KEY, DATA) template pair class used by RMap template class.
27 template <class KEY, class DATA>
30 TPair(const KEY& aKey, const DATA& aData);
31 TPair(const KEY& aKey);
38 template <class KEY, class DATA> class RMap;
41 TMapIterator class. It describes an object which can be used as a
42 forward read-only iterator for sequence of type RMap.
45 template <class KEY, class DATA>
49 TMapIterator(const RMap<KEY, DATA>& aMap);
51 TBool Next(TPair<KEY, DATA>& aPair) const;
53 const RMap<KEY, DATA>& iMap;
58 RMap template class describes an object that controls an ordered sequence of entries.
59 Each entry has a key of type KEY and an associated with it data of type DATA.
60 No entries with duplicated keys are allowed.
61 The algorithm for determining the order of two entries is provided by a TLinearOrder
62 object, supplied by the client of RMap during RMap instance construction.
65 template <class KEY, class DATA>
68 friend class TMapIterator<KEY, DATA>;
70 RMap(const TLinearOrder< TPair<KEY, DATA> >& aOrder);
72 TInt Insert(const KEY& aKey, const DATA& aData);
73 void Remove(const KEY& aKey);
74 const DATA& operator[](const KEY& aKey) const;
75 TInt Find(const KEY& aKey, DATA& aData) const;
79 TLinearOrder< TPair<KEY, DATA> > iOrder;
80 RArray< TPair<KEY, DATA> > iCol;