connectivitymodules/SeCon/wbxml/conmlhandler/inc/sconxmlelement.inl
branchRCL_3
changeset 19 0aa8cc770c8a
parent 18 453dfc402455
child 20 4a793f564d72
equal deleted inserted replaced
18:453dfc402455 19:0aa8cc770c8a
     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:  ConML parser/generator
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __SCONXMLELEMENT_INL__
       
    20 #define __SCONXMLELEMENT_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 CXMLStack<CXMLElement>* TXMLElementParams::CmdStack() const
       
    35 	{
       
    36 	return iCmdStack;
       
    37 	}
       
    38 
       
    39 // ------------------------------------------------------------------------------------------------
       
    40 inline CXMLStack<CXMLElement>* TXMLElementParams::CleanupStack() const
       
    41 	{
       
    42 	return iCleanupStack;
       
    43 	}
       
    44 
       
    45 #endif // __SCONXMLELEMENT_INL__