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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "EComEntry.h"
20 Intended Usage : Standardized default c'tor
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
27 CEComEntry::CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid):iSecondUid(aSecondUid),iThirdUid(aThirdUid)
33 @fn NewL(const TEntry& aEntry)
34 Intended Usage : Standardized safe construction which leaves nothing
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,
44 CEComEntry* CEComEntry::NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid)
46 CEComEntry* self = new(ELeave) CEComEntry(aSecondUid, aThirdUid);
47 CleanupStack::PushL(self);
48 self->ConstructL(aDllName);
49 CleanupStack::Pop(self);
56 Intended Usage : Standardised 2nd, (Initialisation) phase of two phase construction.
57 Error Condition : None
59 @pre CEComEntry is fully constructed.
60 @post CEComEntry is fully initialised.
62 void CEComEntry::ConstructL(const TDesC& aDllName)
64 iName = aDllName.AllocL();
70 Intended Usage : Standard default d'tor
71 Error Condition : None
73 CEComEntry::~CEComEntry()