connectivitymodules/SeCon/wbxml/conmlhandler/inc/sconwbxmldefs.h
branchRCL_3
changeset 19 0aa8cc770c8a
parent 18 453dfc402455
child 20 4a793f564d72
equal deleted inserted replaced
18:453dfc402455 19:0aa8cc770c8a
     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:  ConML parser/generator
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __SCONWBXMLDEFS_H__
       
    20 #define __SCONWBXMLDEFS_H__
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // Typedefs
       
    24 // -----------------------------------------------------------------------------
       
    25 typedef TUint8 TWBXMLTag;
       
    26 
       
    27 // -----------------------------------------------------------------------------
       
    28 // Constants
       
    29 // -----------------------------------------------------------------------------
       
    30 const TWBXMLTag SWITCH_PAGE = 0;
       
    31 const TWBXMLTag END = 1;
       
    32 const TWBXMLTag ENTITY = 2;
       
    33 const TWBXMLTag STR_I = 3;
       
    34 const TWBXMLTag LITERAL = 4;
       
    35 const TWBXMLTag OPAQUE = 0xc3; 
       
    36 
       
    37 const TUint8 KWBXMLHasAttributes = (1<<7);
       
    38 const TUint8 KWBXMLHasContent = (1<<6);
       
    39 
       
    40 
       
    41 #endif // __SCONWBXMLDEFS_H__