websrv_pub/xml_fragment_api/tsrc/senfragmentTester/inc/delegatedomfragment.h
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     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: Header declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef DELEGATE_DOM_FRAGMENT_H
       
    24 #define DELEGATE_DOM_FRAGMENT_H
       
    25 
       
    26 //  INCLUDES
       
    27 #include "SenDomFragmentBase.h"
       
    28 
       
    29 class CDelegateDomFragment : public CSenDomFragmentBase
       
    30     {
       
    31     public:  // Constructors and destructor
       
    32 
       
    33         static CDelegateDomFragment* NewL(const TDesC8& aNsUri,
       
    34                                           const TDesC8& aLocalName,
       
    35                                           const TDesC8& aQName,
       
    36                                           const RAttributeArray& aAttributes);
       
    37 
       
    38         static CDelegateDomFragment* NewLC(const TDesC8& aNsUri,
       
    39                                            const TDesC8& aLocalName,
       
    40                                            const TDesC8& aQName,
       
    41                                            const RAttributeArray& aAttributes);
       
    42 
       
    43         static CDelegateDomFragment* NewL(const TDesC8& aNsUri,
       
    44                                           const TDesC8& aLocalName,
       
    45                                           const TDesC8& aQName,
       
    46                                           const RAttributeArray& aAttributes,
       
    47                                           TXmlEngElement& aParent);
       
    48 
       
    49         static CDelegateDomFragment* NewLC(const TDesC8& aNsUri,
       
    50                                            const TDesC8& aLocalName,
       
    51                                            const TDesC8& aQName,
       
    52                                            const RAttributeArray& aAttributes,
       
    53                                            TXmlEngElement& aParent);
       
    54 
       
    55         static CDelegateDomFragment* NewL(const TDesC8& aNsUri,
       
    56                                           const TDesC8& aLocalName,
       
    57                                           const TDesC8& aQName,
       
    58                                           const RAttributeArray& aAttrs,
       
    59                                           TXmlEngElement& aParent,
       
    60                                           RSenDocument& aOwnerDocument);                                         
       
    61 
       
    62         static CDelegateDomFragment* NewLC(const TDesC8& aNsUri,
       
    63                                            const TDesC8& aLocalName,
       
    64                                            const TDesC8& aQName,
       
    65                                            const RAttributeArray& aAttrs,
       
    66                                            TXmlEngElement& aParent,
       
    67                                            RSenDocument& aOwnerDocument);                                         
       
    68         /**
       
    69         * Destructor.
       
    70         */
       
    71         virtual ~CDelegateDomFragment();
       
    72 
       
    73     private:
       
    74 
       
    75         /**
       
    76         * C++ default constructor.
       
    77         */
       
    78         CDelegateDomFragment();
       
    79     };
       
    80 
       
    81 #endif // DELEGATE_DOM_FRAGMENT_H
       
    82 
       
    83 // End of File
       
    84 
       
    85