remotemgmt_plat/syncml_ds_customization_api/tsrc/exampledevinfextdataplugin/src/exampledevinfextdatacontainerplugindllmain.cpp
branchRCL_3
changeset 25 b183ec05bd8c
equal deleted inserted replaced
24:13d7c31c74e0 25:b183ec05bd8c
       
     1 /*
       
     2 * Copyright (c) 2010 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:  Example Device Info Extension Data Container Plugin 
       
    15 *  implementation group proxy definitions.
       
    16 *
       
    17 */
       
    18 
       
    19 // EXTERNAL INCLUDES
       
    20 #include <ImplementationProxy.h>
       
    21 
       
    22 // INTERNAL INCLUDES
       
    23 #include "exampledevinfextdatacontainerplugin.h"
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // ImplementationGroupProxy array
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 #ifndef IMPLEMENTATION_PROXY_ENTRY
       
    30 #define IMPLEMENTATION_PROXY_ENTRY( aUid, aFuncPtr ) {{aUid},(aFuncPtr)}
       
    31 #endif
       
    32 
       
    33 const TImplementationProxy ImplementationTable[] = 
       
    34     {
       
    35     IMPLEMENTATION_PROXY_ENTRY( KExampleDevInfExtDataContainerImplUid, 
       
    36         CExampleDevInfExtDataContainerPlugin::NewL )
       
    37     };
       
    38 
       
    39 // -----------------------------------------------------------------------------
       
    40 // ImplementationGroupProxy
       
    41 // -----------------------------------------------------------------------------
       
    42 //
       
    43 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    44     {
       
    45     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    46     return ImplementationTable;
       
    47     }
       
    48     
       
    49 // End of file