Update contrib.
1 // Copyright (c) 2002-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 the License "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 // e32\include\drivers\usbcque.h
15 // Simple singly linked list + its iterator for the USB Device driver.
27 #include <kernel/kernel.h>
31 // --- Class definitions ---
37 void Enque(TSglQueLink* aLink);
40 friend class TSglQueBase;
47 TSglQueBase(TInt aOffset);
48 void DoAddLast(TAny* aPtr);
49 void DoRemove(TAny* aPtr);
56 friend class TSglQueIterBase;
61 class TSglQue : public TSglQueBase
64 inline TSglQue(TInt aOffset);
65 inline void AddLast(T& aRef);
66 inline void Remove(T& aRef);
67 inline TInt Elements() const;
76 TSglQueIterBase(TSglQueBase& aQue);
87 class TSglQueIter : public TSglQueIterBase
90 inline TSglQueIter(TSglQueBase& aQue);
92 inline T* operator++(TInt);
96 // --- Inline implementations ---
101 inline TSglQue<T>::TSglQue(TInt aOffset)
102 : TSglQueBase(aOffset)
107 inline void TSglQue<T>::AddLast(T& aRef)
114 inline void TSglQue<T>::Remove(T& aRef)
121 inline TInt TSglQue<T>::Elements() const
129 inline TSglQueIter<T>::TSglQueIter(TSglQueBase& aQue)
130 : TSglQueIterBase(aQue)
135 inline TSglQueIter<T>::operator T*()
137 return ((T*)DoCurrent());
141 inline T* TSglQueIter<T>::operator++(TInt)
143 return ((T*)DoPostInc());
147 #endif // __USBCQUE_H__