omads/omadsappui/OmaDsAppUiPlugin/src/OmaDsAppUiPluginProxy.cpp
branchRCL_3
changeset 24 8e7494275d3a
parent 23 2bb96f4ecad8
child 25 4f0867e42d62
equal deleted inserted replaced
23:2bb96f4ecad8 24:8e7494275d3a
     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 "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:  Nsml DS settings Ecom plugin Impln.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <implementationproxy.h>
       
    21 #include "OmaDsAppUiPluginInterface.h"
       
    22 
       
    23 
       
    24 
       
    25 // Constants
       
    26 const TImplementationProxy KOmaDsViewImplementationTable[] = 
       
    27 	{
       
    28     IMPLEMENTATION_PROXY_ENTRY( KUidNsmlDSGSPluginImpl,	COmaDsAppUiPluginInterface::NewL ) // used by GS plugin
       
    29 	};
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // ImplementationGroupProxy
       
    33 // Gate/factory function
       
    34 // ---------------------------------------------------------------------------
       
    35 //
       
    36 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(  TInt& aTableCount )
       
    37 	{
       
    38 	aTableCount = sizeof( KOmaDsViewImplementationTable ) 
       
    39                 / sizeof( TImplementationProxy );
       
    40 	return KOmaDsViewImplementationTable;
       
    41 	}
       
    42 // End of File