pushmtm/plugins/WhiteListAdapterSrc/WhiteListAdapterGroupProxy.cpp
branchRCL_3
changeset 69 4455192101e4
equal deleted inserted replaced
65:8e6fa1719340 69:4455192101e4
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Table of plugins for ECom
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 	// System includes
       
    22 #include <e32std.h>
       
    23 #include <ecom/implementationproxy.h>
       
    24 
       
    25 	// User includes
       
    26 #include "WhiteListAdapter.h"
       
    27 #include "WhiteListAdapterUids.h"
       
    28 
       
    29 // CONSTANTS
       
    30 
       
    31 const TImplementationProxy KImplementationTable[] = 
       
    32 	{
       
    33 	IMPLEMENTATION_PROXY_ENTRY( KWhiteListAdapterImplementationUid, CWhiteListAdapter::NewL )
       
    34 	};
       
    35 
       
    36 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    37 
       
    38 // -----------------------------------------------------------------------------
       
    39 // ImplementationGroupProxy
       
    40 // -----------------------------------------------------------------------------
       
    41 //
       
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    43 	{
       
    44 	aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy);
       
    45 
       
    46 	return KImplementationTable;
       
    47 	}
       
    48 
       
    49 //  End of File