omaprovisioning/provisioning/AuthTypePlugin/src/AuthtypepluginImplementationTable.cpp
changeset 73 ae69c2e8bc34
parent 71 d2517372cc44
child 77 9f85c58c0592
equal deleted inserted replaced
71:d2517372cc44 73:ae69c2e8bc34
     1 /*
       
     2 * Copyright (c) 2008 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 Authtypeplugin.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // User includes
       
    20 #include "Authtypeplugin.h"
       
    21 
       
    22 // System includes
       
    23 #include <e32std.h>
       
    24 #include <implementationproxy.h>
       
    25 
       
    26 // Constants
       
    27 const TImplementationProxy KAuthtypeSettingsPluginImplementationTable[] =
       
    28     {
       
    29     IMPLEMENTATION_PROXY_ENTRY( 0x2001247D, CAuthtypePlugin::NewL )
       
    30     };
       
    31 
       
    32 // ---------------------------------------------------------------------------
       
    33 // ImplementationGroupProxy
       
    34 // Gate/factory function
       
    35 //
       
    36 // ---------------------------------------------------------------------------
       
    37 //
       
    38 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    39         TInt& aTableCount )
       
    40     {
       
    41     aTableCount = sizeof( KAuthtypeSettingsPluginImplementationTable )
       
    42     / sizeof( TImplementationProxy );
       
    43     return KAuthtypeSettingsPluginImplementationTable;
       
    44     }
       
    45 
       
    46 // End of File