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: // Template class TCapture sl@0: template sl@0: inline TCapture::TCapture(T& aRef) sl@0: : iPtr(&aRef) sl@0: {} sl@0: template sl@0: inline T& TCapture::Object() const sl@0: {return *iPtr;} sl@0: sl@0: // Class TDesHeader sl@0: inline TDesHeader::TDesHeader(const TDesC8& aDes8) sl@0: : iVal((aDes8.Length()<<1)+1) sl@0: {} sl@0: inline TDesHeader::TDesHeader(const TDesC16& aDes16) sl@0: : iVal((aDes16.Length()<<1)) sl@0: {} sl@0: inline TDesHeader& TDesHeader::operator=(const TDesC8& aDes8) sl@0: {return *this=TDesHeader(aDes8);} sl@0: inline TDesHeader& TDesHeader::operator=(const TDesC16& aDes16) sl@0: {return *this=TDesHeader(aDes16);} sl@0: inline TBool TDesHeader::IsWidth8() const sl@0: {return TInt(iVal)&0x1;} sl@0: inline TBool TDesHeader::IsWidth16() const sl@0: {return !IsWidth8();} sl@0: inline TInt TDesHeader::Length() const sl@0: {return TInt(iVal)>>1;} sl@0: inline void TDesHeader::ExternalizeL(RWriteStream& aStream) const sl@0: {aStream<>iVal;} sl@0: sl@0: // Class TDesInternalizer sl@0: inline const TDesHeader& TDesInternalizer::Header() const sl@0: {return iHeader;} sl@0: inline TDesHeader& TDesInternalizer::Header() sl@0: {return iHeader;} sl@0: sl@0: // Class TPtrInput sl@0: inline TPtrInput::TPtrInput(TAny* aPtr) sl@0: : iPtr((TUint8*)aPtr) sl@0: {} sl@0: sl@0: // Class TPtrOutput sl@0: inline TPtrOutput::TPtrOutput(const TAny* aPtr) sl@0: : iPtr((TUint8*)aPtr) sl@0: {} sl@0: sl@0: // Class HDirectStoreBuf sl@0: inline HDirectStoreBuf::~HDirectStoreBuf() sl@0: {RShareBuf::DoRelease();} sl@0: inline HDirectStoreBuf::HDirectStoreBuf(TInt anOffset) sl@0: : iOff(anOffset) sl@0: {} sl@0: