equal
deleted
inserted
replaced
|
1 // Copyright (c) 1999-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 // DTD node header |
|
15 // |
|
16 // |
|
17 |
|
18 #if !defined(__CDTDNODE_H__) |
|
19 #define __CDTDNODE_H__ |
|
20 |
|
21 #include <e32base.h> |
|
22 #include <cbnfnode.h> |
|
23 |
|
24 class CDTDNode : public CBNFNode |
|
25 /** |
|
26 Document Type Definition (DTD) node that forms part of a DTD tree. |
|
27 @publishedAll |
|
28 @deprecated |
|
29 */ |
|
30 { |
|
31 public: |
|
32 //##ModelId=3B66675300CE |
|
33 inline ~CDTDNode(); |
|
34 |
|
35 //##ModelId=3B66675300CD |
|
36 static inline CDTDNode* NewL(); |
|
37 //##ModelId=3B66675300CC |
|
38 inline void AddCompletedAttributeL(); |
|
39 |
|
40 //##ModelId=3B66675300C4 |
|
41 const TDesC* CompletedAttrID(); |
|
42 |
|
43 enum{ // attribute IDs start at -6000 |
|
44 KCompletedAttrID = -6000 |
|
45 }; |
|
46 private: |
|
47 //##ModelId=3B66675300C3 |
|
48 inline CDTDNode(); |
|
49 }; |
|
50 |
|
51 |
|
52 #include <dtdnode.inl> |
|
53 |
|
54 #endif // __CDTDNODE_H__ |