javamanager/javainstaller/javasifplugin/src/proxy.cpp
branchRCL_3
changeset 19 04becd199f91
child 35 85266cc22c7f
child 60 6c158198356e
equal deleted inserted replaced
16:f5050f1da672 19:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2009 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:  Implements interface that exports ECOM implementation
       
    15 *               factories within this .dll
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #include <e32std.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 
       
    23 #include "javasifplugin.h"
       
    24 #include "javauids.h"
       
    25 
       
    26 // CONSTANTS
       
    27 const TImplementationProxy KImplementationTable[] =
       
    28     { IMPLEMENTATION_PROXY_ENTRY(KJavaSifPluginEcomImplUid,
       
    29                                  Java::Installer::CJavaSifPlugin::NewL)
       
    30     };
       
    31 
       
    32 // -----------------------------------------------------------------------------
       
    33 // ImplementationGroupProxy
       
    34 // Returns the implementations in this DLL
       
    35 // Returns: The ECOM implementations in this DLL
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    39 {
       
    40     aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy);
       
    41     return KImplementationTable;
       
    42 }
       
    43 
       
    44 //  End of File