meetingrequest/mricalviewer/src/cesmricalviewermain.cpp
changeset 0 8466d47a6819
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     1 /*
       
     2 * Copyright (c) 2007 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:  DLL entry point and ECOM implementation proxy.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //INCLUDE FILES
       
    20 
       
    21 // From ESMURUtils
       
    22 //<cmail>
       
    23 #include "emailtrace.h"
       
    24 #include "cesmricalviewer.h"
       
    25 #include "mruiuids.h"
       
    26 //</cmail>
       
    27 #include "cesmricalviewerimpl.h"
       
    28 
       
    29 // From System
       
    30 #include <e32base.h>
       
    31 #include <ecom/implementationproxy.h>
       
    32 
       
    33 // ======== LOCAL FUNCTIONS ========
       
    34 
       
    35 // ----------------------------------------------------------------------------
       
    36 // ImplementationTable
       
    37 // Defines instantation methods for ESMRIcalViewer module.
       
    38 // ----------------------------------------------------------------------------
       
    39 //
       
    40 const TImplementationProxy ImplementationTable[] =
       
    41     {
       
    42     IMPLEMENTATION_PROXY_ENTRY(
       
    43             KESMRIcalViewerImplementationUid,
       
    44             CESMRIcalViewerImpl::NewL )
       
    45     };
       
    46 
       
    47 // ----------------------------------------------------------------------------
       
    48 // ImplementationGroupProxy
       
    49 // Returns instantation methods for ES MR Utils module.
       
    50 // @param aTableCount On return contains the number of instantation methods.
       
    51 // ----------------------------------------------------------------------------
       
    52 //
       
    53 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    54         TInt& aTableCount )
       
    55     {
       
    56     aTableCount =
       
    57         sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    58 
       
    59     return ImplementationTable;
       
    60     }
       
    61 
       
    62 // EOF
       
    63