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.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "EComEntry.h"
sl@0
    17
sl@0
    18
/**
sl@0
    19
@fn				CEComEntry()
sl@0
    20
Intended Usage	: Standardized default c'tor
sl@0
    21
sl@0
    22
@param aSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
sl@0
    23
			   	   It will be used by CLoadManager to decide how to initialise a plugin.	
sl@0
    24
@param  aThirdUid: Identifies a component uniquely. 	
sl@0
    25
Error Condition	: None	
sl@0
    26
**/
sl@0
    27
CEComEntry::CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid):iSecondUid(aSecondUid),iThirdUid(aThirdUid) 
sl@0
    28
{
sl@0
    29
}
sl@0
    30
sl@0
    31
sl@0
    32
/**
sl@0
    33
@fn				NewL(const TEntry& aEntry)
sl@0
    34
Intended Usage	: Standardized safe construction which leaves nothing 
sl@0
    35
				on the cleanup stack.	
sl@0
    36
Error Condition	: Cannot fully construct because of memory limitations.	
sl@0
    37
@param aSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
sl@0
    38
			   	   It will be used by CLoadManager to decide how to initialise a plugin.	
sl@0
    39
@param aThirdUid: Identifies a component uniquely. 	
sl@0
    40
@return			A pointer to the new class
sl@0
    41
@post			CEComEntry is fully constructed, 
sl@0
    42
				and initialized.
sl@0
    43
**/
sl@0
    44
CEComEntry* CEComEntry::NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid)
sl@0
    45
{
sl@0
    46
	CEComEntry* self = new(ELeave) CEComEntry(aSecondUid, aThirdUid);
sl@0
    47
	CleanupStack::PushL(self);
sl@0
    48
	self->ConstructL(aDllName);
sl@0
    49
	CleanupStack::Pop(self);
sl@0
    50
	return self;
sl@0
    51
}
sl@0
    52
sl@0
    53
sl@0
    54
/**
sl@0
    55
@fn				void ConstructL()
sl@0
    56
Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
sl@0
    57
Error Condition	: None
sl@0
    58
sl@0
    59
@pre 			CEComEntry is fully constructed.
sl@0
    60
@post			CEComEntry is fully initialised.
sl@0
    61
*/
sl@0
    62
void CEComEntry::ConstructL(const TDesC& aDllName)
sl@0
    63
{
sl@0
    64
	iName = aDllName.AllocL();	
sl@0
    65
}
sl@0
    66
sl@0
    67
sl@0
    68
/**
sl@0
    69
@fn				~CEComEntry()
sl@0
    70
Intended Usage	: Standard default d'tor	
sl@0
    71
Error Condition	: None	
sl@0
    72
 */
sl@0
    73
CEComEntry::~CEComEntry()
sl@0
    74
{
sl@0
    75
	 delete iName;
sl@0
    76
}
sl@0
    77
sl@0
    78