Update contrib.
1 // Copyright (c) 2006-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 // The implementation of a simple ECOM interface for testing purpose.
23 #include "exampleNine.h"
24 #include "ImplementationProxy.h"
27 Factory instantiation method.
29 CRoguePlugin* CRoguePlugin::NewL(TAny*)
31 CRoguePlugin* self=new(ELeave) CRoguePlugin();
35 /** virtual destructor */
36 CRoguePlugin::~CRoguePlugin()
41 CRoguePlugin::CRoguePlugin()
46 /** a test function */
47 TUid CRoguePlugin::InterfaceUid()
49 return KRogueInterfaceUid;
52 // ___________________________________________________________________
53 // Exported proxy for instantiation method resolution
54 // Define the interface UIDs
55 const TImplementationProxy ImplementationTable[] =
57 // implementation UID 10009DC3 is in-used by many example ECOM
59 IMPLEMENTATION_PROXY_ENTRY(KRogueImplUidValue, CRoguePlugin::NewL)
62 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
64 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
65 return ImplementationTable;