calendarui/calenaiwprovider/src/calenaiwproviderDllMain.cpp
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     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 : Multiple calendar's list dialog listing all the available calendars.
       
    15  * */
       
    16 
       
    17 // System includes
       
    18 #include <implementationproxy.h>
       
    19 
       
    20 // User includes
       
    21 #include "calenaiwprovider.h"
       
    22 #include "calenaiwproviderdefines.hrh"
       
    23 
       
    24 // ---------------------------------------------------------
       
    25 // Define the interface UIDs
       
    26 // Map the interface implementation UIDs to implementation factory functions
       
    27 // ---------------------------------------------------------
       
    28 //
       
    29 const TImplementationProxy ImplementationTable[] =
       
    30     {
       
    31     IMPLEMENTATION_PROXY_ENTRY( KCalenAiwProviderDllUid,CCalenAiwProvider::NewL )
       
    32     };
       
    33 
       
    34 // ---------------------------------------------------------
       
    35 // ImplementationGroupProxy
       
    36 // Exported proxy for instantiation method resolution.
       
    37 // ---------------------------------------------------------
       
    38 //
       
    39 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aCount )
       
    40     {
       
    41     aCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    42     return ImplementationTable;
       
    43     }
       
    44 
       
    45 // End of file.