diff -r 000000000000 -r 72b543305e3a email/mail/PluginSrc/MailPlainView/MsgMailViewerHtmlConv.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/email/mail/PluginSrc/MailPlainView/MsgMailViewerHtmlConv.inl Thu Dec 17 08:44:11 2009 +0200 @@ -0,0 +1,59 @@ +/* +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* HTML converter for mail viewer, inline functions +* +*/ + + +#ifndef MSGMAILVIEWERHTMLCONV_INL +#define MSGMAILVIEWERHTMLCONV_INL + +// INLINE FUNCTIONS + +inline HBufC* CStringPair::GetName() const + { + return iName; + } + +inline HBufC* CStringPair::GetValue() const + { + return iValue; + } + +inline TInt CStringPair::Compare(const CStringPair& aPair1, + const CStringPair& aPair2) + { + return aPair1.iName->Compare(*(aPair2.iName)); + } + +inline HBufC* CMsgMailViewerHtmlConv::GetText() const + { + return iOrigText; + } + +inline TInt CMsgMailViewerHtmlConv::HandleUListL(const TInt aIndent) + { + return HandleListL(aIndent, EFalse); + } + +inline TInt CMsgMailViewerHtmlConv::HandleOListL(const TInt aIndent) + { + return HandleListL(aIndent, ETrue); + } + + +#endif // MSGMAILEDITORDOCUMENT_INL + +// End of File