Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
42 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
47 inline int Size() const;
48 inline T& operator [] (const int aNum) const;
49 inline void Add(T aT);
50 virtual void Externalize(ostream& out) = 0;
51 inline void Destroy();
58 class ObjectList : public List<T>
60 List of object pointers
62 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
66 inline virtual void Externalize(ostream& out);
67 inline void Destroy();
70 template <class T> inline Link<T>::Link()
75 template <class T> inline Link<T>::Link(T aT)
81 template <class T> inline List<T>::List()
86 template <class T> inline int List<T>::Size() const
89 Link<T>* link = iFirst;
98 template <class T> inline T& List<T>::operator [] (const int aNum) const
101 Link<T>* link = iFirst;
110 template <class T> inline void List<T>::Add(T aT)
114 iFirst = new Link<T>(aT);
118 while (link->iNext != NULL)
120 link->iNext = new Link<T>(aT);
124 template <class T> inline void List<T>::Destroy()
126 Link<T>* link = iFirst;
137 template <class T> inline List<T>::~List (void)
142 template <class T> inline void ObjectList<T>::Externalize(ostream& out)
144 int32 size = List<T>::Size();
146 out.write ((char*) &size, sizeof(size));
147 for (i = 0; i < size; i++)
148 (*this)[i]->Externalize(out);
151 template <class T> inline void ObjectList<T>::Destroy()
153 int size = List<T>::Size();
155 for (i = 0; i < size; i++)