1 /* |
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 * Copyright (c) 2004-2006 Nokia Corporation and/or its subsidiary(-ies). |
2 // All rights reserved. |
3 * All rights reserved. |
3 // This component and the accompanying materials are made available |
4 * This component and the accompanying materials are made available |
4 // under the terms of "Eclipse Public License v1.0" |
5 * 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 |
5 // which accompanies this distribution, and is available |
6 * which accompanies this distribution, and is available |
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
7 // |
8 * |
8 // Initial Contributors: |
9 * Initial Contributors: |
9 // Nokia Corporation - initial contribution. |
10 * Nokia Corporation - initial contribution. |
10 // |
11 * |
11 // Contributors: |
12 * Contributors: |
12 // |
13 * |
13 // Description: |
14 * Description: Comment node functions |
14 // Comment node functions |
15 * |
15 // |
16 */ |
|
17 |
16 |
18 |
17 |
19 |
18 |
|
19 /** |
|
20 @file |
|
21 @publishedAll |
|
22 @released |
|
23 */ |
|
24 #ifndef XMLENGCOMMENT_H |
|
25 #define XMLENGCOMMENT_H |
20 |
26 |
21 |
27 #include <xml/dom/xmlengcharacterdata.h> |
22 |
|
23 |
|
24 #ifndef XMLENGINE_COMMENT_H_INCLUDED |
|
25 #define XMLENGINE_COMMENT_H_INCLUDED |
|
26 |
|
27 #include "xmlengcharacterdata.h" |
|
28 |
28 |
29 /** |
29 /** |
30 * Instance of TXmlEngComment class represents an XML comments in the DOM tree. |
30 This class represents XML comments in the DOM tree. |
31 * |
31 |
32 * DOM spec: http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-FF21A306 |
32 DOM spec: http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-FF21A306 |
33 * |
33 */ |
34 * @lib XmlEngineDOM.lib |
|
35 * @since S60 v3.1 |
|
36 */ |
|
37 class TXmlEngComment : public TXmlEngCharacterData |
34 class TXmlEngComment : public TXmlEngCharacterData |
38 { |
35 { |
39 public: |
36 public: |
40 /** |
37 /** Default constructor */ |
41 * Default constructor |
|
42 * |
|
43 * @since S60 v3.1 |
|
44 */ |
|
45 inline TXmlEngComment(); |
38 inline TXmlEngComment(); |
46 |
39 |
47 protected: |
40 protected: |
48 /** |
41 /** |
49 * Constructor |
42 Constructor |
50 * |
43 @param aInternal Comment pointer |
51 * @since S60 v3.1 |
44 */ |
52 * @param aInternal Comment pointer |
|
53 */ |
|
54 inline TXmlEngComment(void* aInternal); |
45 inline TXmlEngComment(void* aInternal); |
55 }; |
46 }; |
56 |
47 |
57 #include "xmlengcomment.inl" |
48 #include <xml/dom/xmlengcomment.inl> |
58 |
49 |
59 #endif /* XMLENGINE_COMMENT_H_INCLUDED */ |
50 #endif /* XMLENGCOMMENT_H */ |
|
51 |