Implement the ECom framework code

Context

Converters must provide the standard ECom factory code to create an instance of the converter. For example,

CConverterBase2* CExampleConverter::NewL()
    {
    CConverterBase2* conv = new( ELeave ) CExampleConverter();
    return conv;
    }
// Standard ECOM factory code
const TImplementationProxy ImplementationTable[] =
    {    
    IMPLEMENTATION_PROXY_ENTRY( KExampleConvImplementationUid, CExampleConverter::NewL )
    };
// Standard ECOM factory code
EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
    {
    aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
    return ImplementationTable;
    }

For more details on ECom factory code, see Exporting the implementation factories.