epoc32/include/xml/dom/xmlengentityreference.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:       Entity reference node functions
    14 // Entity reference node functions
    15 *
    15 //
    16 */
       
    17 
    16 
    18 
    17 
    19 
    18 
       
    19 /**
       
    20  @file
       
    21  @publishedAll
       
    22  @released
       
    23 */
       
    24 #ifndef XMLENGENTITYREFERENCE_H
       
    25 #define XMLENGENTITYREFERENCE_H
    20 
    26 
    21 
    27 #include <xml/dom/xmlengnode.h>
    22 
       
    23 
       
    24 #ifndef XMLENGINE_ENTITYREFERENCE_H_INCLUDED
       
    25 #define XMLENGINE_ENTITYREFERENCE_H_INCLUDED
       
    26 
       
    27 #include "xmlengnode.h"
       
    28 
       
    29 
    28 
    30 /** 
    29 /** 
    31  * Instance of TXmlEngEntityReference class represents an XML entity reference in the DOM tree.
    30 This class represents an XML entity reference in the DOM tree.
    32  * 
    31 */
    33  * @lib XmlEngineDOM.lib
       
    34  * @since S60 v3.1
       
    35  */
       
    36 class TXmlEngEntityReference : public TXmlEngNode
    32 class TXmlEngEntityReference : public TXmlEngNode
    37 {
    33 {
    38 public:
    34 public:
    39 	/** 
    35 	/** Default constructor */
    40      * Default constructor
       
    41      *
       
    42      * @since S60 v3.1
       
    43      */
       
    44 	inline TXmlEngEntityReference();
    36 	inline TXmlEngEntityReference();
    45 
    37 
    46 protected:
    38 protected:
    47 	/** 
    39 	/** 
    48      * Constructor
    40     Constructor
    49      *
    41     @param aInternal Entity reference pointer
    50      * @since S60 v3.1
    42     */
    51      * @param aInternal Entity reference pointer
       
    52      */
       
    53 	inline TXmlEngEntityReference(void* aInternal);
    43 	inline TXmlEngEntityReference(void* aInternal);
    54 };
    44 };
    55 
    45 
    56 #include "xmlengentityreference.inl"
    46 #include <xml/dom/xmlengentityreference.inl>
    57 
    47 
    58 #endif /* XMLENGINE_ENTITYREFERENCE_H_INCLUDED */
    48 #endif /* XMLENGENTITYREFERENCE_H */
    59 
    49