os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntry.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntry.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,78 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "EComEntry.h"
    1.20 +
    1.21 +/**
    1.22 +@fn				CEComEntry()
    1.23 +Intended Usage	: Standardized default c'tor
    1.24 +
    1.25 +@param aSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
    1.26 +			   	   It will be used by CLoadManager to decide how to initialise a plugin.	
    1.27 +@param  aThirdUid: Identifies a component uniquely. 	
    1.28 +Error Condition	: None	
    1.29 +**/
    1.30 +CEComEntry::CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid):iSecondUid(aSecondUid),iThirdUid(aThirdUid) 
    1.31 +{
    1.32 +}
    1.33 +
    1.34 +
    1.35 +/**
    1.36 +@fn				NewL(const TEntry& aEntry)
    1.37 +Intended Usage	: Standardized safe construction which leaves nothing 
    1.38 +				on the cleanup stack.	
    1.39 +Error Condition	: Cannot fully construct because of memory limitations.	
    1.40 +@param aSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
    1.41 +			   	   It will be used by CLoadManager to decide how to initialise a plugin.	
    1.42 +@param aThirdUid: Identifies a component uniquely. 	
    1.43 +@return			A pointer to the new class
    1.44 +@post			CEComEntry is fully constructed, 
    1.45 +				and initialized.
    1.46 +**/
    1.47 +CEComEntry* CEComEntry::NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid)
    1.48 +{
    1.49 +	CEComEntry* self = new(ELeave) CEComEntry(aSecondUid, aThirdUid);
    1.50 +	CleanupStack::PushL(self);
    1.51 +	self->ConstructL(aDllName);
    1.52 +	CleanupStack::Pop(self);
    1.53 +	return self;
    1.54 +}
    1.55 +
    1.56 +
    1.57 +/**
    1.58 +@fn				void ConstructL()
    1.59 +Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
    1.60 +Error Condition	: None
    1.61 +
    1.62 +@pre 			CEComEntry is fully constructed.
    1.63 +@post			CEComEntry is fully initialised.
    1.64 +*/
    1.65 +void CEComEntry::ConstructL(const TDesC& aDllName)
    1.66 +{
    1.67 +	iName = aDllName.AllocL();	
    1.68 +}
    1.69 +
    1.70 +
    1.71 +/**
    1.72 +@fn				~CEComEntry()
    1.73 +Intended Usage	: Standard default d'tor	
    1.74 +Error Condition	: None	
    1.75 + */
    1.76 +CEComEntry::~CEComEntry()
    1.77 +{
    1.78 +	 delete iName;
    1.79 +}
    1.80 +
    1.81 +