equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-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 // |
|
15 |
|
16 #if !defined(__WBENUM_H__) |
|
17 #define __WBENUM_H__ |
|
18 |
|
19 enum TWbxmlPanic |
|
20 { |
|
21 EWbxmlPanicCantHandleElement, // A rendering plugin received a node of type (tag) that it cannot handle |
|
22 EWbxmlPanicPluginLoadFailed, |
|
23 EWbxmlPanicInvalidUrl |
|
24 }; |
|
25 GLREF_C void Panic (TWbxmlPanic aPanic); |
|
26 |
|
27 enum TWbxmlLeave |
|
28 { |
|
29 EWbxmlNoSource = 1, |
|
30 EWbxmlUnknownXml, |
|
31 EWbxmlUnknownPublicId, |
|
32 EWbxmlUnsupportedPublicId, |
|
33 EWbxmlTokenTags, |
|
34 EWbxmlTokenAttributes |
|
35 }; |
|
36 |
|
37 #endif // __WBENUM_H__ |
|
38 |
|
39 // |
|
40 // End of file |
|
41 // |