xml/xmldomandxpath/inc/xmlenginedom/xmlengdocumentfragment.h
changeset 0 e35f40988205
equal deleted inserted replaced
-1:000000000000 0:e35f40988205
       
     1 // Copyright (c) 2005-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 // Document fragment node functions
       
    15 //
       
    16 
       
    17 
       
    18 
       
    19 /**
       
    20  @file
       
    21  @publishedAll
       
    22  @released
       
    23 */
       
    24 #ifndef XMLENGDOCUMENTFRAGMENT_H
       
    25 #define XMLENGDOCUMENTFRAGMENT_H
       
    26 
       
    27 #include <xml/dom/xmlengnode.h>
       
    28 
       
    29 
       
    30 /** 
       
    31 This class represents a document fragment of the DOM tree.
       
    32 */
       
    33 class TXmlEngDocumentFragment : public TXmlEngNode
       
    34 {
       
    35 public:
       
    36     /** Default constructor */
       
    37 	inline TXmlEngDocumentFragment();
       
    38 
       
    39 protected:
       
    40 	/** 
       
    41     Constructor
       
    42     @param aInternal Document fragment pointer
       
    43     */
       
    44 	inline TXmlEngDocumentFragment(void* aInternal);
       
    45 };
       
    46 
       
    47 #include <xml/dom/xmlengdocumentfragment.inl>
       
    48 
       
    49 #endif /* XMLENGDOCUMENTFRAGMENT_H */
       
    50