omads/omadsappui/AspPreSyncPlugin/src/proxy.cpp
branchRCL_3
changeset 24 8e7494275d3a
parent 23 2bb96f4ecad8
child 25 4f0867e42d62
equal deleted inserted replaced
23:2bb96f4ecad8 24:8e7494275d3a
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 #include <e32std.h>
       
    19 #include <ecom/implementationproxy.h>
       
    20 #include "AspPreSyncDefaultPlugin.h"
       
    21 
       
    22 // Map the interface implementation UIDs to implementation factory functions
       
    23 const TImplementationProxy ImplementationTable[] =
       
    24     {
       
    25             IMPLEMENTATION_PROXY_ENTRY(0x2001955D,  CPreSyncDefaultPlugin::NewL)
       
    26     };
       
    27 
       
    28 
       
    29 // Exported proxy for instantiation method resolution.
       
    30 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    31     TInt& aTableCount)
       
    32     {
       
    33     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    34     return ImplementationTable;
       
    35     }