terminalsecurity/SCP/SCPHistoryPlugin/src/SCPHistoryPluginImpCollection.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 "SCPHistoryPlugin.h"
       
    25 #include "SCPSpecificStringsPlugin.h"
       
    26 
       
    27 
       
    28 
       
    29 // ----------------------------------------------------------------------------
       
    30 // ImplementationTable
       
    31 // Ecom plug-in implementation table
       
    32 // Status : Approved
       
    33 // ----------------------------------------------------------------------------
       
    34 //
       
    35 const TImplementationProxy ImplementationTable[] =
       
    36      {
       
    37 #ifdef __EABI__ 
       
    38 	IMPLEMENTATION_PROXY_ENTRY( 0x10274265, CSCPHistoryPlugin::NewL ), // SCPHistoryPlugin
       
    39 	IMPLEMENTATION_PROXY_ENTRY( 0x10274267, CSCPSpecificStringsPlugin::NewL ) // SCPSpecificStringsPlugin
       
    40 	
       
    41 #else // !__EABI__ 
       
    42      { { 0x10274265  }, CSCPHistoryPlugin::NewL },// SCPHistoryPlugin
       
    43      { { 0x10274267  }, CSCPSpecificStringsPlugin::NewL }// SCPSpecificStringsPlugin
       
    44 #endif // __EABI__ 
       
    45      };
       
    46 
       
    47 // ----------------------------------------------------------------------------
       
    48 // ImplementationGroupProxy
       
    49 // Instance of implementation proxy
       
    50 // (exported)
       
    51 // Status : Approved
       
    52 // ----------------------------------------------------------------------------
       
    53 //
       
    54 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    55     {
       
    56 	aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    57 
       
    58 	return ImplementationTable;
       
    59     }
       
    60 
       
    61 // End of File