websrv_pub/xml_fragment_api/tsrc/senfragmentTester/inc/delegatefragment.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_FRAGMENT_H
       
    24 #define DELEGATE_FRAGMENT_H
       
    25 
       
    26 //  INCLUDES
       
    27 #include "SenFragmentBase.h"
       
    28 
       
    29 class CDelegateFragment : public CSenFragmentBase
       
    30     {
       
    31     public:  // Constructors and destructor
       
    32 
       
    33         static CDelegateFragment* NewL(const TDesC8& aNsUri,
       
    34                                          const TDesC8& aLocalName,
       
    35                                          const TDesC8& aQName,
       
    36                                          const RAttributeArray& aAttributes);
       
    37 
       
    38         static CDelegateFragment* NewLC(const TDesC8& aNsUri,
       
    39                                          const TDesC8& aLocalName,
       
    40                                          const TDesC8& aQName,
       
    41                                          const RAttributeArray& aAttributes);
       
    42 
       
    43         static CDelegateFragment* NewL(const TDesC8& aNsUri,
       
    44                                          const TDesC8& aLocalName,
       
    45                                          const TDesC8& aQName,
       
    46                                          const RAttributeArray& aAttributes,
       
    47                                          TXmlEngElement& aParent);
       
    48 
       
    49         static CDelegateFragment* NewLC(const TDesC8& aNsUri,
       
    50                                          const TDesC8& aLocalName,
       
    51                                          const TDesC8& aQName,
       
    52                                          const RAttributeArray& aAttributes,
       
    53                                          TXmlEngElement& aParent);
       
    54 
       
    55         /**
       
    56         * Destructor.
       
    57         */
       
    58         virtual ~CDelegateFragment();
       
    59 
       
    60     private:
       
    61 
       
    62         /**
       
    63         * C++ default constructor.
       
    64         */
       
    65         CDelegateFragment();
       
    66     };
       
    67 
       
    68 #endif // DELEGATE_FRAGMENT_H
       
    69 
       
    70 // End of File
       
    71 
       
    72