testdev/ite/test/com.nokia.testfw.cmdtool.test/test.resource/unittest/several.mmp.in.one.path/SysLibs/ECom/InterfaceDefinition/Proxy.cpp
changeset 1 96906a986c3b
equal deleted inserted replaced
0:f1112f777ce9 1:96906a986c3b
       
     1 //
       
     2 // Proxy.cpp
       
     3 // Copyright © 1997-2001 Symbian Ltd. All rights reserved.
       
     4 //
       
     5 
       
     6 #include <e32std.h>
       
     7 #include <ImplementationProxy.h>
       
     8 
       
     9 #include "ExampleResolver.h"
       
    10 
       
    11 
       
    12 // Map the interface UIDs
       
    13 const TImplementationProxy ImplementationTable[] = 
       
    14 	{
       
    15 		IMPLEMENTATION_PROXY_ENTRY(0x10009DD0,	CExampleResolver::NewL)
       
    16 	};
       
    17 
       
    18 // Exported proxy for instantiation method resolution
       
    19 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    20 	{
       
    21 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    22 
       
    23 	return ImplementationTable;
       
    24 	}
       
    25