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