sipplugins/sippsipsettingsui/src/sipsettingspluginimplementationtable.cpp
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  ECOM proxy table for this plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include <e32std.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 #include "sipsettingsplugin.h"
       
    23 #include "gssippluginlogger.h"
       
    24 
       
    25 
       
    26 // CONSTANTS
       
    27 
       
    28 // Disable PC-lint warning #611, as the cause is in Symbian code and can't be fixed
       
    29 /*lint -e611 */
       
    30 const TImplementationProxy KSIPSettingsPluginImplementationTable[] = 
       
    31 	{
       
    32 	IMPLEMENTATION_PROXY_ENTRY(0x101FD6D0,	CSIPSettingsPlugin::NewL)
       
    33 	};
       
    34 /*lint +e611 */	
       
    35 
       
    36 // ---------------------------------------------------------------------------
       
    37 // ImplementationGroupProxy
       
    38 //
       
    39 // Gate/factory function
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    43 															TInt& aTableCount)
       
    44 	{
       
    45     __GSLOGSTRING( "[GSSIPSettingsPlugin] ImplementationGroupProxy()" )
       
    46 	aTableCount = sizeof( KSIPSettingsPluginImplementationTable ) 
       
    47         / sizeof( TImplementationProxy );
       
    48 	return KSIPSettingsPluginImplementationTable;
       
    49 	}
       
    50 
       
    51 
       
    52 // ---------------------------------------------------------------------------
       
    53 // E32Dll
       
    54 // EKA1 entry point
       
    55 //
       
    56 // ---------------------------------------------------------------------------
       
    57 //
       
    58 #ifndef EKA2
       
    59 GLDEF_C TInt E32Dll( TDllReason /*aReason*/ )
       
    60 	{
       
    61 	return( KErrNone );
       
    62 	}
       
    63 #endif
       
    64 
       
    65 // End of File