gssettingsuis/Gs/GSNetworkPlugin/Src/GSNetworkPluginImplementationTable.cpp
branchRCL_3
changeset 24 8ee96d21d9bf
parent 23 8bda91a87a00
child 25 7e0eff37aedb
equal deleted inserted replaced
23:8bda91a87a00 24:8ee96d21d9bf
     1 /*
       
     2 * Copyright (c) 2006 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: 
       
    15 *        ECOM proxy table for this plugin
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // System includes
       
    21 #include <e32std.h>
       
    22 #include <implementationproxy.h>
       
    23 
       
    24 // User includes
       
    25 #include "GSNetworkPlugin.h"
       
    26 
       
    27 #ifdef FF_POWER_SAVE
       
    28     #include "PSMNetworkPlugin.h"
       
    29 #endif // FF_POWER_SAVE
       
    30 
       
    31 // Constants
       
    32 const TImplementationProxy KGSNetworkPluginImplementationTable[] =
       
    33 	{
       
    34 	IMPLEMENTATION_PROXY_ENTRY( 0x102824A8,	CGSNetworkPlugin::NewL )
       
    35 #ifdef FF_POWER_SAVE
       
    36     ,
       
    37     IMPLEMENTATION_PROXY_ENTRY( 0x2000B594, CPSMNetworkPlugin::NewL )
       
    38 #endif // FF_POWER_SAVE 
       
    39 	};
       
    40 
       
    41 
       
    42 // ---------------------------------------------------------------------------
       
    43 // ImplementationGroupProxy
       
    44 //
       
    45 // Gate/factory function
       
    46 // ---------------------------------------------------------------------------
       
    47 //
       
    48 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    49                                                   TInt& aTableCount )
       
    50 	{
       
    51 	aTableCount = sizeof( KGSNetworkPluginImplementationTable )
       
    52         / sizeof( TImplementationProxy );
       
    53 	return KGSNetworkPluginImplementationTable;
       
    54 	}
       
    55 
       
    56 
       
    57 // End of File