xdmprotocols/XdmXmlParser/inc/XmlParserDefines.h
branchRCL_3
changeset 17 2669f8761a99
parent 16 2580314736af
child 18 fbd2e7cec7ef
equal deleted inserted replaced
16:2580314736af 17:2669f8761a99
     1 /*
       
     2 * Copyright (c) 2005 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:   XmlParserDefines
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __XMLPARSERDEFINES__
       
    22 #define __XMLPARSERDEFINES__
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26         
       
    27 _LIT8( KEquelsSignString,                               "=" );
       
    28 _LIT8( KQuotationSignString,                            "\"" );
       
    29 _LIT8( KSlashString,                                    "/" );
       
    30 _LIT8( KCommentString,                                  "<!--" );
       
    31 _LIT8( KEmptyElementString,                             "/>" );
       
    32 _LIT8( KStartBracketString,                             "<" );
       
    33 _LIT8( KEndBracketString,                               ">" );
       
    34 _LIT8( KXmlNamespaceString,                             " xmlns" );
       
    35 _LIT8( KPrefixSeparatorString,                          ":" );
       
    36 _LIT8( KNewlineString,                                  "\r\n" );
       
    37 _LIT8( KSpaceString,                                    " " );
       
    38 
       
    39 const TInt KStartBracket                                = 60;
       
    40 const TInt KEndBracket                                  = 62;
       
    41 const TInt KSpace                                       = 32;
       
    42 const TInt KEquality                                    = 61;
       
    43 const TInt KQuotation                                   = 34;
       
    44 
       
    45 #endif      //__XMLPARSERDEFINES__  
       
    46             
       
    47 // End of File