XDMEngine/inc/XdmEngineDefines.h
branchRCL_3
changeset 34 2669f8761a99
parent 31 2580314736af
child 35 fbd2e7cec7ef
equal deleted inserted replaced
31:2580314736af 34:2669f8761a99
     1 /*
       
     2 * Copyright (c) 2004 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:   XDM Engine defines
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __XdmENGINEDEFINES__
       
    22 #define __XdmENGINEDEFINES__
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 //General defines
       
    27 _LIT8( KGeneralEqualsAndQuotes,                        "=\""  );
       
    28 _LIT8( KGeneralQuotes,                                 "\""  );
       
    29 
       
    30 //Xdm specific defines 
       
    31 const TInt KXdmPathSeparator                           = 47;
       
    32 
       
    33 //XCAP specific defines
       
    34 _LIT8( KXCAPEquality,                                  "="  );
       
    35 _LIT8( KXCAPNodeSeparator,                             "~~" );
       
    36 _LIT8( KXCAPPathSeparator,                             "/"  );
       
    37 _LIT8( KXCAPAttributeIdentifier,                       "@"  );
       
    38 
       
    39 //HTTP specific defines
       
    40 _LIT8( KHTTPAngleBracketOpen,                          "%5b");
       
    41 _LIT8( KHTTPAngleBracketClose,                         "%5d");
       
    42 _LIT8( KHTTPAngleQuotationMark,                        "%22");
       
    43 
       
    44 //XML specific defines
       
    45 _LIT8( KXmlSpace,                                      " ");
       
    46 #endif    //__XdmENGINEDEFINES__
       
    47             
       
    48 // End of File