syncmlfw/common/wbxml/inc/xmlelement.inl
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Inline methods for WBXML TXMLElementParams.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __XMLELEMENT_INL__
       
    20 #define __XMLELEMENT_INL__
       
    21 
       
    22 // ------------------------------------------------------------------------------------------------
       
    23 inline TXMLElementParams::TXMLElementParams() : iCallbacks(0), iCmdStack(0), iCleanupStack(0)
       
    24 	{
       
    25 	}
       
    26 
       
    27 // ------------------------------------------------------------------------------------------------
       
    28 inline TAny* TXMLElementParams::Callbacks() const
       
    29 	{
       
    30 	return iCallbacks;
       
    31 	}
       
    32 
       
    33 // ------------------------------------------------------------------------------------------------
       
    34 inline CNSmlStack<CXMLElement>* TXMLElementParams::CmdStack() const
       
    35 	{
       
    36 	return iCmdStack;
       
    37 	}
       
    38 
       
    39 // ------------------------------------------------------------------------------------------------
       
    40 inline CNSmlStack<CXMLElement>* TXMLElementParams::CleanupStack() const
       
    41 	{
       
    42 	return iCleanupStack;
       
    43 	}
       
    44 
       
    45 #endif // __XMLELEMENT_INL__