terminalsecurity/SCP/SCPPatternPlugin/src/SCPPatternPluginImpCollection.cpp
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2000 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: Implementation of terminalsecurity components
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <e32base.h>
       
    21 #include <e32std.h>
       
    22 #include <ecom/implementationproxy.h>
       
    23 
       
    24 #include "SCPPatternPlugin.h"
       
    25 
       
    26 
       
    27 
       
    28 // ----------------------------------------------------------------------------
       
    29 // ImplementationTable
       
    30 // Ecom plug-in implementation table
       
    31 // Status : Approved
       
    32 // ----------------------------------------------------------------------------
       
    33 //
       
    34 const TImplementationProxy ImplementationTable[] =
       
    35      {
       
    36 #ifdef __EABI__ 
       
    37 	IMPLEMENTATION_PROXY_ENTRY( 0x10274263, CSCPPatternPlugin::NewL ) 
       
    38 #else // !__EABI__ 
       
    39      { { 0x10274263 }, CSCPPatternPlugin::NewL }
       
    40 #endif // __EABI__ 
       
    41      };
       
    42 
       
    43 // ----------------------------------------------------------------------------
       
    44 // ImplementationGroupProxy
       
    45 // Instance of implementation proxy
       
    46 // (exported)
       
    47 // Status : Approved
       
    48 // ----------------------------------------------------------------------------
       
    49 //
       
    50 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    51     {
       
    52 	aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    53 
       
    54 	return ImplementationTable;
       
    55     }
       
    56 
       
    57 // End of File