1 /* |
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 * Copyright (c) 2004-2005 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: Document fragment node functions |
14 // Document fragment node functions |
15 * |
15 // |
16 */ |
|
17 |
16 |
18 |
17 |
19 |
18 |
|
19 /** |
|
20 @file |
|
21 @publishedAll |
|
22 @released |
|
23 */ |
|
24 #ifndef XMLENGDOCUMENTFRAGMENT_H |
|
25 #define XMLENGDOCUMENTFRAGMENT_H |
20 |
26 |
21 |
27 #include <xml/dom/xmlengnode.h> |
22 |
|
23 |
|
24 #ifndef XMLENGINE_DOCUMENTFRAGMENT_H_INCLUDED |
|
25 #define XMLENGINE_DOCUMENTFRAGMENT_H_INCLUDED |
|
26 |
|
27 #include "xmlengnode.h" |
|
28 |
|
29 |
28 |
30 |
29 |
31 /** |
30 /** |
32 * Instance of TXmlEngDocumentFragment class represents an document fragment of the DOM tree. |
31 This class represents a document fragment of the DOM tree. |
33 * |
32 */ |
34 * @lib XmlEngineDOM.lib |
|
35 * @since S60 v3.1 |
|
36 */ |
|
37 class TXmlEngDocumentFragment : public TXmlEngNode |
33 class TXmlEngDocumentFragment : public TXmlEngNode |
38 { |
34 { |
39 public: |
35 public: |
40 /** |
36 /** Default constructor */ |
41 * Default constructor |
|
42 * |
|
43 * @since S60 v3.1 |
|
44 */ |
|
45 inline TXmlEngDocumentFragment(); |
37 inline TXmlEngDocumentFragment(); |
46 |
38 |
47 protected: |
39 protected: |
48 /** |
40 /** |
49 * Constructor |
41 Constructor |
50 * |
42 @param aInternal Document fragment pointer |
51 * @since S60 v3.1 |
43 */ |
52 * @param aInternal Document fragment pointer |
|
53 */ |
|
54 inline TXmlEngDocumentFragment(void* aInternal); |
44 inline TXmlEngDocumentFragment(void* aInternal); |
55 }; |
45 }; |
56 |
46 |
57 #include "xmlengdocumentfragment.inl" |
47 #include <xml/dom/xmlengdocumentfragment.inl> |
58 |
48 |
59 #endif /* XMLENGINE_DOCUMENTFRAGMENT_H_INCLUDED */ |
49 #endif /* XMLENGDOCUMENTFRAGMENT_H */ |
60 |
50 |