websrv_pub/xml_fragment_api/tsrc/bc/senfragment/inc/delegatedomfragment.h
branchRCL_3
changeset 20 f68f07157250
equal deleted inserted replaced
18:b72ea8487adb 20:f68f07157250
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  domfragment header declaration      
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 #ifndef DELEGATE_DOM_FRAGMENT_H
       
    26 #define DELEGATE_DOM_FRAGMENT_H
       
    27 
       
    28 //  INCLUDES
       
    29 #include "SenDomFragmentBase.h"
       
    30 
       
    31 class CDelegateDomFragment : public CSenDomFragmentBase
       
    32     {
       
    33     public:  // Constructors and destructor
       
    34 
       
    35         static CDelegateDomFragment* NewL(const TDesC8& aNsUri,
       
    36                                           const TDesC8& aLocalName,
       
    37                                           const TDesC8& aQName,
       
    38                                           const RAttributeArray& aAttributes);
       
    39 
       
    40         static CDelegateDomFragment* NewLC(const TDesC8& aNsUri,
       
    41                                            const TDesC8& aLocalName,
       
    42                                            const TDesC8& aQName,
       
    43                                            const RAttributeArray& aAttributes);
       
    44 
       
    45         static CDelegateDomFragment* NewL(const TDesC8& aNsUri,
       
    46                                           const TDesC8& aLocalName,
       
    47                                           const TDesC8& aQName,
       
    48                                           const RAttributeArray& aAttributes,
       
    49                                           TXmlEngElement& aParent);
       
    50 
       
    51         static CDelegateDomFragment* NewLC(const TDesC8& aNsUri,
       
    52                                            const TDesC8& aLocalName,
       
    53                                            const TDesC8& aQName,
       
    54                                            const RAttributeArray& aAttributes,
       
    55                                            TXmlEngElement& aParent);
       
    56 
       
    57         static CDelegateDomFragment* NewL(const TDesC8& aNsUri,
       
    58                                           const TDesC8& aLocalName,
       
    59                                           const TDesC8& aQName,
       
    60                                           const RAttributeArray& aAttrs,
       
    61                                           TXmlEngElement& aParent,
       
    62                                           RSenDocument& aOwnerDocument);                                         
       
    63 
       
    64         static CDelegateDomFragment* NewLC(const TDesC8& aNsUri,
       
    65                                            const TDesC8& aLocalName,
       
    66                                            const TDesC8& aQName,
       
    67                                            const RAttributeArray& aAttrs,
       
    68                                            TXmlEngElement& aParent,
       
    69                                            RSenDocument& aOwnerDocument);                                         
       
    70         /**
       
    71         * Destructor.
       
    72         */
       
    73         virtual ~CDelegateDomFragment();
       
    74 
       
    75     private:
       
    76 
       
    77         /**
       
    78         * C++ default constructor.
       
    79         */
       
    80         CDelegateDomFragment();
       
    81     };
       
    82 
       
    83 #endif // DELEGATE_DOM_FRAGMENT_H
       
    84 
       
    85 // End of File
       
    86 
       
    87