systemsettings/GSAccessoryPlugin/src/implementationtable.cpp
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2005-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 GSAccessoryPlugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <ecom/implementationproxy.h>
       
    20 
       
    21 #include "gsaccessoryplugin.h"
       
    22 
       
    23 // LOCAL CONSTANTS AND MACROS
       
    24 const TImplementationProxy KImplTable[] =
       
    25 	{
       
    26 	IMPLEMENTATION_PROXY_ENTRY( 0x1020743D,	CGSAccessoryPlugin::NewL )
       
    27 	};
       
    28 
       
    29 // ---------------------------------------------------------------------------
       
    30 // ImplementationGroupProxy
       
    31 // Factory function
       
    32 // ---------------------------------------------------------------------------
       
    33 //
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    35     TInt& aTableCount )
       
    36 	{
       
    37 	aTableCount = sizeof( KImplTable ) / sizeof( TImplementationProxy );
       
    38 	return KImplTable;
       
    39 	}