webservices/wsfragment/inc/wslibxml2utils.h
changeset 0 62f9d29f7211
child 23 a1df79fa35b4
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2004-2006 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:        This class offers a set of utility functions for XML data
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 #ifndef WS_LIBXML2_UTILS_H_INCLUDED
       
    26 #define WS_LIBXML2_UTILS_H_INCLUDED
       
    27 
       
    28 #include <e32base.h>
       
    29 #include "xmlengelement.h"
       
    30 
       
    31 class WsXmlUtils
       
    32 {
       
    33   public:
       
    34   
       
    35 /**
       
    36  * Renames TXmlEngElement node.
       
    37  *
       
    38  * @since S60 v5.1
       
    39  * @param aElement Element node
       
    40  * @param aLocalName New name
       
    41  * @param aNamespaceUri New namespace uri
       
    42  * @param aPrefix New namespace prefix
       
    43  */
       
    44 			
       
    45 	IMPORT_C void  XmlEngRenameElementL(TXmlEngElement aElement, const TDesC8& aLocalName, 
       
    46                                const TDesC8& aNamespaceUri, 
       
    47                                const TDesC8& aPrefix);  
       
    48                                    
       
    49     
       
    50 };
       
    51 
       
    52 
       
    53 #endif /* WS_LIBXML2_UTILS_H_INCLUDED */