epoc32/include/txtfmlyr.inl
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
     1 txtfmlyr.inl
     1 // Copyright (c) 1997-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 
       
    19 inline CParaFormatLayer* CParaFormatLayer::CloneL()const
       
    20 /** Constructs and returns a new CParaFormatLayer with identical formatting to 
       
    21 the current layer. Note that the function does not copy the original layer's 
       
    22 based-on link - the new layer's based-on link is set to NULL, so that the 
       
    23 two layers may not have the same effective formatting.
       
    24 
       
    25 @return A new paragraph format layer cloned from the current layer. */
       
    26 	{return STATIC_CAST(CParaFormatLayer*,DoCloneL());}
       
    27 
       
    28 
       
    29 
       
    30 
       
    31 inline CCharFormatLayer* CCharFormatLayer::CloneL()const
       
    32 /** Constructs and returns a new CCharFormatLayer with identical formatting to 
       
    33 the current layer. Note that the function does not copy the original layer's 
       
    34 based-on link - the new layer's based-on link is set to NULL, so that the 
       
    35 two layers may not have the same effective formatting.
       
    36 
       
    37 @return A new character format layer cloned from the current layer. */
       
    38 	{return STATIC_CAST(CCharFormatLayer*,DoCloneL());}