First public contribution.
1 // Copyright (c) 1998-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.
18 #ifndef __U32STD_DBMS_H__
19 #define __U32STD_DBMS_H__
24 #include "D32Assert.h"
26 // MSVC++ up to 5.0 has problems with expanding inline functions
27 // This disables the mad warnings for the whole project
28 #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
29 #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
32 // need a const iterator!
34 class TSglQueIterC : public TSglQueIterBase
40 inline TSglQueIterC(const TSglQueBase& aQue);
41 inline operator const T* ();
42 inline const T* operator++(TInt);
46 inline TSglQueIterC<T>::TSglQueIterC(const TSglQueBase& aQue)
47 : TSglQueIterBase(CONST_CAST(TSglQueBase&,aQue))
50 inline TSglQueIterC<T>::operator const T* ()
51 {return (const T*)DoCurrent();}
53 inline const T* TSglQueIterC<T>::operator++(TInt)
54 {return (const T*)DoPostInc();}