networkprotocolmodules/common/suplrrlpasn1/src/rrlpassistancedataack.cpp
changeset 0 9cfd9a3ee49c
equal deleted inserted replaced
-1:000000000000 0:9cfd9a3ee49c
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19  
       
    20 */
       
    21 
       
    22 #include "RRLP-Messages.h"
       
    23 #include "rrlpassistancedataack.h"
       
    24 #include "supldevloggermacros.h" 
       
    25 
       
    26 
       
    27 /** 
       
    28 Static factory constructor
       
    29 */
       
    30 EXPORT_C CRrlpAssistanceDataAck* CRrlpAssistanceDataAck::NewL()
       
    31 	{
       
    32 	SUPLLOG(ELogP1, "CRrlpAssistanceDataAck::NewL() Begin\n");
       
    33 	CRrlpAssistanceDataAck* self = new (ELeave) CRrlpAssistanceDataAck();
       
    34 	CleanupStack::PushL(self);
       
    35 	self->ConstructL();
       
    36 	SUPLLOG(ELogP1, "CRrlpAssistanceDataAck::NewL() End\n");
       
    37 	CleanupStack::Pop(self);
       
    38 	return self;
       
    39 	}
       
    40 
       
    41 		
       
    42 /** 
       
    43 Default constructor
       
    44 */
       
    45 CRrlpAssistanceDataAck::CRrlpAssistanceDataAck()
       
    46  : CRrlpMessageBase(ERrlpAssistanceDataAck, ETrue)
       
    47 	{
       
    48 	}
       
    49 
       
    50 
       
    51 /** 
       
    52 Second stage constructor 
       
    53 */
       
    54 void CRrlpAssistanceDataAck::ConstructL()
       
    55 	{
       
    56 	// call the base class constructor to initialise content container 
       
    57 	// and control objects
       
    58 	CRrlpMessageBase::ConstructL();
       
    59 
       
    60 	iData->component.t = T_RRLP_Component_assistanceDataAck;
       
    61 	}
       
    62 
       
    63 
       
    64 /** 
       
    65 Destructor 
       
    66 */
       
    67 CRrlpAssistanceDataAck::~CRrlpAssistanceDataAck()
       
    68 	{
       
    69 	SUPLLOG(ELogP1, "CRrlpAssistanceDataAck::~CRrlpAssistanceDataAck() Begin\n");
       
    70 	SUPLLOG(ELogP1, "CRrlpAssistanceDataAck::~CRrlpAssistanceDataAck() End\n");
       
    71 	}
       
    72 	
       
    73