xml/legacyminidomparser/XMLParser/test/t_smildtdenum.h
changeset 34 c7e9f1c97567
parent 25 417699dc19c9
child 36 172b09aa4eb6
equal deleted inserted replaced
25:417699dc19c9 34:c7e9f1c97567
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // smildtdenum.h
       
    15 // 
       
    16 //
       
    17 /**
       
    18  * @file 
       
    19  * @internalComponent
       
    20  * @released
       
    21  */
       
    22 #ifndef T_SMILDTDENUM_H
       
    23 #define T_SMILDTDENUM_H
       
    24 
       
    25 #include <e32def.h>
       
    26 
       
    27 // Structures and definitions for child element checking.
       
    28 // The child element checks are managed by a state machine and this type defines
       
    29 // allowed transitions.
       
    30 struct TSMILDTDChildStateType
       
    31 /**
       
    32 @internalComponent
       
    33 @released
       
    34 */
       
    35 	{
       
    36 	TInt         FromState;	// Starting state - 0 = initial state
       
    37 	TInt         ToState;	// Next state - -1 = terminating state
       
    38 	const TText *TagName;	// Name of tag causing the transition, empty string = finished
       
    39 	TInt         TagLength;	// Length of tag string (helps to make the descriptor)
       
    40 	};
       
    41 
       
    42 #endif // T_SMILDTDENUM_H