os/persistentdata/persistentstorage/dbms/inc/U32STD.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/inc/U32STD.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,54 @@
     1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef DBMS_INC_U32STD_H
    1.20 +#define DBMS_INC_U32STD_H
    1.21 +
    1.22 +#ifndef __E32STD_H__
    1.23 +#include <e32std.h>
    1.24 +#endif
    1.25 +#include "D32Assert.h"
    1.26 +
    1.27 +// MSVC++ up to 5.0 has problems with expanding inline functions
    1.28 +// This disables the mad warnings for the whole project
    1.29 +#if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
    1.30 +#pragma warning(disable : 4710)			// function not expanded. MSVC 5.0 is stupid
    1.31 +#endif
    1.32 +
    1.33 +// need a const iterator!
    1.34 +template <class T>
    1.35 +class TSglQueIterC : public TSglQueIterBase
    1.36 +/**
    1.37 +@internalComponent
    1.38 +*/
    1.39 +	{
    1.40 +public:
    1.41 +	inline TSglQueIterC(const TSglQueBase& aQue);
    1.42 +	inline operator const T* ();
    1.43 +	inline const T* operator++(TInt);
    1.44 +	};
    1.45 +
    1.46 +template <class T>
    1.47 +inline TSglQueIterC<T>::TSglQueIterC(const TSglQueBase& aQue)
    1.48 +	: TSglQueIterBase(CONST_CAST(TSglQueBase&,aQue))
    1.49 +	{}
    1.50 +template <class T>
    1.51 +inline TSglQueIterC<T>::operator const T* ()
    1.52 +	{return (const T*)DoCurrent();}
    1.53 +template <class T>
    1.54 +inline const T* TSglQueIterC<T>::operator++(TInt)
    1.55 +	{return (const T*)DoPostInc();}
    1.56 +
    1.57 +#endif