srsf/vcommandexecutorbearer/src/nssvcexecutorbearermain.cpp
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2005 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: 
       
    15 *       Bearer plugin main file
       
    16 *       
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <ecom/implementationproxy.h>
       
    23 #include "nssvcexecutorbearerimpl.h"
       
    24 #include "nssvcexecutorbearer.hrh"
       
    25 
       
    26 // CONSTANTS
       
    27 // Define the private interface UIDs
       
    28 const TImplementationProxy ImplementationTable[] =
       
    29     {
       
    30     IMPLEMENTATION_PROXY_ENTRY( NssVCExecutorBearerPluginImplementationUid, NssVCExecutorBearer::NewL ),
       
    31     };
       
    32 
       
    33 // ---------------------------------------------------------
       
    34 // ImplementationGroupProxy ()
       
    35 // ---------------------------------------------------------
       
    36 //
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    38     {
       
    39     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    40 
       
    41     return ImplementationTable;
       
    42     }
       
    43 
       
    44 //
       
    45 // End of file