diff -r 890b5dd735f8 -r f15ac8e65a02 vtuis/lcvtplugin/src/base/dllmain.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vtuis/lcvtplugin/src/base/dllmain.cpp Tue Aug 31 15:16:10 2010 +0300 @@ -0,0 +1,39 @@ +/* +* ============================================================================== +* Name : dllmain.cpp +* Part of : +* Description : +* Version : +* +* Copyright ?2004 Nokia Corporation. +* This material, including documentation and any related +* computer programs, is protected by copyright controlled by +* Nokia Corporation. All rights are reserved. Copying, +* including reproducing, storing, adapting or translating, any +* or all of this material requires the prior written consent of +* Nokia Corporation. This material also contains confidential +* information which may not be disclosed to others without the +* prior written consent of Nokia Corporation. +* ============================================================================== +*/ +#include +#include +#include "clcvtengine.h" + +// Map the interface UIDs to implementation factory functions +const TImplementationProxy Implementations[] = + { + IMPLEMENTATION_PROXY_ENTRY( 0x20021342, CLcVtEngine::NewL ) + }; + +// ----------------------------------------------------------------------------- +// ImplementationGroupProxy +// +// Exported proxy for instantiation method resolution +// ----------------------------------------------------------------------------- +// +EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aCount ) + { + aCount = sizeof( Implementations ) / sizeof( TImplementationProxy ); + return Implementations; + }