wlansecuritysettings/wlaneapsettingsui/EapPluginConfig/src/EAPPluginConfigurationProxy.cpp
changeset 0 c8830336c852
child 2 1c7bc153c08e
equal deleted inserted replaced
-1:000000000000 0:c8830336c852
       
     1 /*
       
     2 * Copyright (c) 2001-2009 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 the License "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: Some functions that ECom needs.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "EAPPluginConfiguration.h"
       
    22 #include "EAPPluginConfigUid.h"
       
    23 
       
    24 #include <e32base.h>
       
    25 #include <ecom/implementationproxy.h>
       
    26 
       
    27 
       
    28 const TImplementationProxy ImplementationTable[] = 
       
    29     {
       
    30     {{EAP_PLUGIN_CONFIG_IMPLEMENTATION_UID}, 
       
    31         reinterpret_cast<TProxyNewLPtr>( CEAPPluginConfiguration::NewL ) }
       
    32     };
       
    33 
       
    34 
       
    35 // ================= OTHER EXPORTED FUNCTIONS ==============
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // ImplementationGroupProxy
       
    39 // -----------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    42                                                           TInt& aTableCount )
       
    43     {
       
    44     aTableCount = sizeof( ImplementationTable ) / 
       
    45                   sizeof( TImplementationProxy );
       
    46 
       
    47     return ImplementationTable;
       
    48     }
       
    49 
       
    50 
       
    51 // End of file