equal
deleted
inserted
replaced
|
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 __SMILDTDENUM_H__ |
|
23 #define __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 // __SMILDTDENUM_H__ |