email/mail/PluginSrc/MailPlainView/MsgMailViewerHtmlConv.inl
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 31 Mar 2010 21:25:02 +0300
branchRCL_3
changeset 14 c6838af47512
parent 0 72b543305e3a
permissions -rw-r--r--
Revision: 201011 Kit: 201013

/*
* 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