epoc32/include/xml/dom/xmlengcdatasection.h
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
equal deleted inserted replaced
3:e1b950c65cb4 4:837f303aceeb
     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:       CDATASection node functions
    14 // CDATASection node functions
    15 *
    15 //
    16 */
       
    17 
    16 
    18 
    17 
    19 
    18 
       
    19 /**
       
    20  @file
       
    21  @publishedAll
       
    22  @released
       
    23 */
       
    24 #ifndef XMLENGCDATASECTION_H
       
    25 #define XMLENGCDATASECTION_H
    20 
    26 
    21 
    27 #include <xml/dom/xmlengtext.h>
    22 
       
    23 
       
    24 #ifndef XMLENGINE_CDATASECTION_H_INCLUDED
       
    25 #define XMLENGINE_CDATASECTION_H_INCLUDED
       
    26 
       
    27 #include "xmlengtext.h"
       
    28 
    28 
    29 /** 
    29 /** 
    30  * Instance of TXmlEngCDATASection class represents an XML CDATASection in the DOM tree.
    30 This class represents a XML CDATASection in the DOM tree.
    31  * 
    31 */
    32  * @lib XmlEngineDOM.lib
       
    33  * @since S60 v3.1
       
    34  */
       
    35 class TXmlEngCDATASection : public TXmlEngTextNode
    32 class TXmlEngCDATASection : public TXmlEngTextNode
    36 {
    33 {
    37 public:
    34 public:
    38     /** 
    35     /** Default constructor */
    39      * Default constructor
       
    40      */
       
    41 	inline TXmlEngCDATASection();
    36 	inline TXmlEngCDATASection();
    42 
       
    43     
    37     
    44 protected:
    38 protected:
    45     /** 
    39     /** 
    46      * Constructor
    40     Constructor
    47      *
    41     @param aInternal CDATASection pointer
    48      * @since S60 v3.1
    42     */
    49      * @param aInternal CDATASection pointer
       
    50      */
       
    51 	inline TXmlEngCDATASection(void* aInternal);
    43 	inline TXmlEngCDATASection(void* aInternal);
    52 };
    44 };
    53 
    45 
    54 
    46 
    55 
    47 
    56 #include "xmlengcdatasection.inl"
    48 #include <xml/dom/xmlengcdatasection.inl>
    57 
    49 
    58 #endif /* XMLENGINE_CDATASECTION_H_INCLUDED */
    50 #endif /* XMLENGCDATASECTION_H */
       
    51