os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntry.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2003-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 #include "EComEntry.h"
    17 
    18 /**
    19 @fn				CEComEntry()
    20 Intended Usage	: Standardized default c'tor
    21 
    22 @param aSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
    23 			   	   It will be used by CLoadManager to decide how to initialise a plugin.	
    24 @param  aThirdUid: Identifies a component uniquely. 	
    25 Error Condition	: None	
    26 **/
    27 CEComEntry::CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid):iSecondUid(aSecondUid),iThirdUid(aThirdUid) 
    28 {
    29 }
    30 
    31 
    32 /**
    33 @fn				NewL(const TEntry& aEntry)
    34 Intended Usage	: Standardized safe construction which leaves nothing 
    35 				on the cleanup stack.	
    36 Error Condition	: Cannot fully construct because of memory limitations.	
    37 @param aSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
    38 			   	   It will be used by CLoadManager to decide how to initialise a plugin.	
    39 @param aThirdUid: Identifies a component uniquely. 	
    40 @return			A pointer to the new class
    41 @post			CEComEntry is fully constructed, 
    42 				and initialized.
    43 **/
    44 CEComEntry* CEComEntry::NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid)
    45 {
    46 	CEComEntry* self = new(ELeave) CEComEntry(aSecondUid, aThirdUid);
    47 	CleanupStack::PushL(self);
    48 	self->ConstructL(aDllName);
    49 	CleanupStack::Pop(self);
    50 	return self;
    51 }
    52 
    53 
    54 /**
    55 @fn				void ConstructL()
    56 Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
    57 Error Condition	: None
    58 
    59 @pre 			CEComEntry is fully constructed.
    60 @post			CEComEntry is fully initialised.
    61 */
    62 void CEComEntry::ConstructL(const TDesC& aDllName)
    63 {
    64 	iName = aDllName.AllocL();	
    65 }
    66 
    67 
    68 /**
    69 @fn				~CEComEntry()
    70 Intended Usage	: Standard default d'tor	
    71 Error Condition	: None	
    72  */
    73 CEComEntry::~CEComEntry()
    74 {
    75 	 delete iName;
    76 }
    77 
    78