sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef DBMS_INC_U32STD_H sl@0: #define DBMS_INC_U32STD_H sl@0: sl@0: #ifndef __E32STD_H__ sl@0: #include sl@0: #endif sl@0: #include "D32Assert.h" sl@0: sl@0: // MSVC++ up to 5.0 has problems with expanding inline functions sl@0: // This disables the mad warnings for the whole project sl@0: #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100 sl@0: #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid sl@0: #endif sl@0: sl@0: // need a const iterator! sl@0: template sl@0: class TSglQueIterC : public TSglQueIterBase sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: inline TSglQueIterC(const TSglQueBase& aQue); sl@0: inline operator const T* (); sl@0: inline const T* operator++(TInt); sl@0: }; sl@0: sl@0: template sl@0: inline TSglQueIterC::TSglQueIterC(const TSglQueBase& aQue) sl@0: : TSglQueIterBase(CONST_CAST(TSglQueBase&,aQue)) sl@0: {} sl@0: template sl@0: inline TSglQueIterC::operator const T* () sl@0: {return (const T*)DoCurrent();} sl@0: template sl@0: inline const T* TSglQueIterC::operator++(TInt) sl@0: {return (const T*)DoPostInc();} sl@0: sl@0: #endif