00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <implementationproxy.h>
00025 #include "mmfexdes.h"
00026 #include "MmfExSinkSourceUIDs.hrh"
00027
00028 const TImplementationProxy ImplementationTable[] =
00029 {
00030 IMPLEMENTATION_PROXY_ENTRY(KDescriptorSourceUID, CMMFExDescriptor::NewSourceL),
00031 IMPLEMENTATION_PROXY_ENTRY(KDescriptorSinkUID, CMMFExDescriptor::NewSinkL)
00032 };
00033
00034 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
00035 {
00036 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
00037
00038 return ImplementationTable;
00039 }
00040