omadm/omadmextensions/adapters/lawmodmadapter/src/lawmodmadaptermain.cpp
branchRCL_3
changeset 70 5d5344402085
parent 65 450d1facd418
child 73 5042b6604f6f
equal deleted inserted replaced
65:450d1facd418 70:5d5344402085
     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:  DCMO DM Adapter implementation
       
    15 *
       
    16 */
       
    17 
       
    18 // INCLUDE
       
    19 #include <implementationproxy.h>
       
    20 #include "lawmodmadapter.h"
       
    21 
       
    22 // ----------------------------------------------------------------------------
       
    23 // ImplementationTable
       
    24 // Ecom plug-in implementation table
       
    25 // Status : Draft
       
    26 // ----------------------------------------------------------------------------
       
    27 //
       
    28 const TImplementationProxy ImplementationTable[] = 
       
    29     {
       
    30 	IMPLEMENTATION_PROXY_ENTRY( 0x2002EA23, CLawmoDMAdapter::NewL )
       
    31     };
       
    32 
       
    33 // ----------------------------------------------------------------------------
       
    34 // ImplementationGroupProxy
       
    35 // Instance of implementation proxy
       
    36 // (exported)
       
    37 // Status : Draft
       
    38 // ----------------------------------------------------------------------------
       
    39 //
       
    40 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    41     {
       
    42     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    43 
       
    44     return ImplementationTable;
       
    45     }
       
    46 
       
    47 // End Of File