os/persistentdata/persistentstorage/store/INC/U32FRAME.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 // Class RFrame16Buf
    17 inline TStreamPos RFrame16Buf::Base() const
    18 	{return iBase;}
    19 inline TInt RFrame16Buf::Offset(TStreamPos aPos) const
    20 	{return Offset(iBase,aPos);}
    21 inline TStreamPos RFrame16Buf::Position(TInt anOffset) const
    22 	{return Position(iBase,anOffset);}
    23 inline TInt RFrame16Buf::Offset() const
    24 	{return iOff;}
    25 inline TInt RFrame16Buf::Extent() const
    26 	{return iExt;}
    27 inline TBool RFrame16Buf::IsCommitted() const
    28 	{return iExt!=0;}
    29 inline TStreamExchange& RFrame16Buf::Host() const
    30 	{
    31 	__ASSERT_DEBUG(iHost!=NULL,User::Invariant());
    32 	return *iHost;
    33 	}
    34