xdmprotocols/XcapProtocol/inc/XcapEngineDefines.h
branchGCC_SURGE
changeset 28 d9861ae9169c
parent 23 77cb48a03620
parent 26 04ca1926b01c
equal deleted inserted replaced
23:77cb48a03620 28:d9861ae9169c
     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: XcapEngine literals
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __XCAPENGINEDEFINES__
       
    22 #define __XCAPENGINEDEFINES__
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 //Xdm specific defines 
       
    27 const TInt KXcapPathSeparatorChar                      = 47;
       
    28 
       
    29 //XCAP specific defines
       
    30 _LIT8( KXCAPEquality,                                  "="  );
       
    31 _LIT8( KXCAPNodeSeparator,                             "~~" );
       
    32 _LIT8( KXCAPPathSeparator,                             "/"  );
       
    33 _LIT8( KXCAPAttributeIdentifier,                       "@"  );
       
    34 _LIT8( KHTTPBracketOpen,                               "[");
       
    35 _LIT8( KHTTPBracketClose,                              "]");
       
    36 _LIT8( KHTTPQuotationMark,                             "\"");
       
    37 
       
    38 //Escape coded HTTP specific defines
       
    39 _LIT8( KHTTPBracketOpenEsc,                            "%5b");
       
    40 _LIT8( KHTTPBracketCloseEsc,                           "%5d");
       
    41 _LIT8( KHTTPQuotationMarkEsc,                          "%22");
       
    42 
       
    43 //XML specific defines
       
    44 _LIT8( KXmlSpace,                                      " ");
       
    45 #endif    //__XCAPENGINEDEFINES__
       
    46             
       
    47 // End of File