1.1 --- a/epoc32/include/xml/extension.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,98 +0,0 @@
1.4 -// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -#ifndef __EXTENSION_H__
1.20 -#define __EXTENSION_H__
1.21 -
1.22 -#include <e32base.h>
1.23 -
1.24 -
1.25 -//
1.26 -// This file describes version 1.3 WBXML Extension enumerations.
1.27 -//
1.28 -
1.29 -enum TExtensionToken
1.30 -/**
1.31 -Lists enumerations used to describe the global unambiguous wbxml tokens
1.32 -@see CParser
1.33 -@see http://www.w3.org/TR/wbxml/
1.34 -
1.35 -@publishedPartner
1.36 -@released
1.37 -*/
1.38 - {
1.39 -
1.40 -/**
1.41 -Enumeration with a token value that represents
1.42 -an inline string document-type-specific extension token.
1.43 -Token is followed by a termstr.
1.44 -*/
1.45 - EExtensionTokenEXT_I_0 = 0x40,
1.46 -
1.47 -/**
1.48 -Enumeration with a token value that represents
1.49 -an inline string document-type-specific extension token.
1.50 -Token is followed by a termstr.
1.51 -*/
1.52 - EExtensionTokenEXT_I_1 = 0x41,
1.53 -
1.54 -/**
1.55 -Enumeration with a token value that represents
1.56 -an inline string document-type-specific extension token.
1.57 -Token is followed by a termstr.
1.58 -*/
1.59 - EExtensionTokenEXT_I_2 = 0x42,
1.60 -
1.61 -/**
1.62 -Enumeration with a token value that represents
1.63 -an inline integer document-type-specific extension token.
1.64 -Token is followed by a mb_u_int32.
1.65 -*/
1.66 - EExtensionTokenEXT_T_0 = 0x80,
1.67 -/**
1.68 -Enumeration with a token value that represents
1.69 -an inline integer document-type-specific extension token.
1.70 -Token is followed by a mb_u_int32.
1.71 -*/
1.72 - EExtensionTokenEXT_T_1 = 0x81,
1.73 -
1.74 -/**
1.75 -Enumeration with a token value that represents
1.76 -an inline integer document-type-specific extension token.
1.77 -Token is followed by a mb_u_int32.
1.78 -*/
1.79 - EExtensionTokenEXT_T_2 = 0x82,
1.80 -
1.81 -/**
1.82 -Enumeration with a token value that represents
1.83 -a single -byte document-type-specific extension token.
1.84 -*/
1.85 - EExtensionTokenEXT_0 = 0xC0,
1.86 -
1.87 -/**
1.88 -Enumeration with a token value that represents
1.89 -a single -byte document-type-specific extension token.
1.90 -*/
1.91 - EExtensionTokenEXT_1 = 0xC1,
1.92 -
1.93 -/**
1.94 -Enumeration with a token value that represents
1.95 -a single -byte document-type-specific extension token.
1.96 -*/
1.97 - EExtensionTokenEXT_2 = 0xC2,
1.98 -
1.99 - };
1.100 -
1.101 -#endif // __EXTENSION_H__