remotestoragefw/webdavaccessplugin/src/rsfwdavproxy.cpp
branchRCL_3
changeset 19 88ee4cf65e19
parent 16 87c71b25c937
child 20 1aa8c82cb4cb
equal deleted inserted replaced
16:87c71b25c937 19:88ee4cf65e19
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  ECOM proxy for DavAccess
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 //#include <e32std.h>
       
    21 #include <implementationproxy.h>
       
    22 #include "rsfwdavaccess.h"
       
    23 
       
    24 // CONSTANTS
       
    25 // Map the interface UIDs to implementation factory functions
       
    26 const TImplementationProxy ImplementationTable[] = 
       
    27     {
       
    28         {{0x101F9769}, (TProxyNewLPtr)CRsfwDavAccess::NewL}
       
    29     };
       
    30 
       
    31 // ========================== OTHER EXPORTED FUNCTIONS ========================
       
    32 
       
    33 // ----------------------------------------------------------------------------
       
    34 // ImplementationGroupProxy
       
    35 // Exported proxy for instantiation method resolution
       
    36 // ----------------------------------------------------------------------------
       
    37 //
       
    38 EXPORT_C const TImplementationProxy*
       
    39 ImplementationGroupProxy(TInt& aTableCount)
       
    40     {
       
    41     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    42     
       
    43     return ImplementationTable;
       
    44     }
       
    45 
       
    46 //  End of File