cmmanager/cmmgr/Plugins/cmpluginvpn/src/cmpluginproxyvpn.cpp
changeset 20 9c97ad6591ae
parent 18 fcbbe021d614
child 21 b8e8e15e80f2
child 23 7ec726f93df1
child 28 860702281757
equal deleted inserted replaced
18:fcbbe021d614 20:9c97ad6591ae
     1 /*
       
     2 * Copyright (c) 2006 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:  VPN plug-in's ECom proxy descriptor.
       
    15 *
       
    16 */
       
    17 
       
    18 #include "cmpluginvpn.h"
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 
       
    22 // Exported proxy for instantiation method resolution
       
    23 // Define the interface UIDs
       
    24 const TImplementationProxy ImplementationTable[] = 
       
    25     {
       
    26     IMPLEMENTATION_PROXY_ENTRY( KPluginVPNBearerTypeUid, CCmPluginVpn::NewL)
       
    27     };
       
    28 
       
    29 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    30     {
       
    31     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    32 
       
    33     return ImplementationTable;
       
    34     }