ncdengine/provider/protocol/src/ncd_pp_purchaseimpl.cpp
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2006 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:   CNcdEntityRefParser implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "ncd_pp_purchaseimpl.h"
       
    20 #include "ncdprotocolutils.h"
       
    21 
       
    22 CNcdPreminetProtocolPurchaseImpl* 
       
    23 CNcdPreminetProtocolPurchaseImpl::NewL() 
       
    24     {
       
    25     CNcdPreminetProtocolPurchaseImpl* self =
       
    26         new (ELeave) CNcdPreminetProtocolPurchaseImpl;
       
    27     CleanupStack::PushL( self );
       
    28     self->ConstructL();
       
    29     CleanupStack::Pop( self );
       
    30     return self;
       
    31     }
       
    32     
       
    33 CNcdPreminetProtocolPurchaseImpl* 
       
    34 CNcdPreminetProtocolPurchaseImpl::NewLC() 
       
    35     {
       
    36     CNcdPreminetProtocolPurchaseImpl* self =
       
    37         new (ELeave) CNcdPreminetProtocolPurchaseImpl;
       
    38     CleanupStack::PushL( self );
       
    39     self->ConstructL();
       
    40     return self;
       
    41     }
       
    42     
       
    43 void CNcdPreminetProtocolPurchaseImpl::ConstructL()
       
    44     {
       
    45     }
       
    46 
       
    47 CNcdPreminetProtocolPurchaseImpl::~CNcdPreminetProtocolPurchaseImpl()
       
    48     {
       
    49     }
       
    50