First public contribution.
1 // Copyright (c) 2007-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.
14 // EComLoadMgrExample2.h
15 // The implementation of a plugin used for load manager validation tests
19 #include "EComLoadMgrExample2.h"
21 // __________________________________________________________________________
24 CImplementationLoadMgrExample2* CImplementationLoadMgrExample2::NewL(TAny* aInitParams)
26 CImplementationLoadMgrExample2* self=new(ELeave) CImplementationLoadMgrExample2(); // calls c'tor
27 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
28 self->ConstructL(aInitParams); // Complete the 'construction'.
29 CleanupStack::Pop(self);
33 CImplementationLoadMgrExample2::~CImplementationLoadMgrExample2()
37 CImplementationLoadMgrExample2::CImplementationLoadMgrExample2()
39 // Deliberately do nothing here : See ConstructL() for initialisation completion.
42 void CImplementationLoadMgrExample2::ConstructL(TAny*)
46 // __________________________________________________________________________
47 // Exported proxy for instantiation method resolution
48 // Define the interface UIDs
49 const TImplementationProxy ImplementationTable[] =
51 IMPLEMENTATION_PROXY_ENTRY(0x10282333, CImplementationLoadMgrExample2::NewL)
54 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
56 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
57 return ImplementationTable;