meetingrequest/mrviewercalplugin/src/esmrviewermain.cpp
branchRCL_3
changeset 25 3533d4323edc
parent 0 8466d47a6819
equal deleted inserted replaced
24:d189ee25cf9d 25:3533d4323edc
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Resource file for ECOM registry.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // ----------------------------------------------------------------------------
       
    21 // INCLUDE FILES
       
    22 // ----------------------------------------------------------------------------
       
    23 //
       
    24 // From ESMRVIEWER
       
    25 #include "emailtrace.h"
       
    26 #include "cesmrviewersimpl.h"
       
    27 #include "esmrinternaluid.h"
       
    28 
       
    29 // From System
       
    30 #include <e32base.h>
       
    31 #include <ecom/implementationproxy.h>
       
    32 
       
    33 
       
    34 // ==================== LOCAL FUNCTIONS ====================
       
    35 
       
    36 // ----------------------------------------------------------------------------
       
    37 // ImplementationTable
       
    38 // Definition for ESMRVIEWER constructor methods
       
    39 // ----------------------------------------------------------------------------
       
    40 //
       
    41 const TImplementationProxy ImplementationTable[] =
       
    42 	{
       
    43     IMPLEMENTATION_PROXY_ENTRY( KESMRViewerCalPluginImplUid3Imap,
       
    44                                 CESMRViewersImpl::NewL ),
       
    45     IMPLEMENTATION_PROXY_ENTRY( KESMRViewerCalPluginImplUid3Smtp,
       
    46                                 CESMRViewersImpl::NewL ),
       
    47     IMPLEMENTATION_PROXY_ENTRY( KESMRViewerCalPluginImplUid3Fs,
       
    48                                 CESMRViewersImpl::NewL )                                
       
    49 	};
       
    50 
       
    51 /**
       
    52 * ImplementationGroupProxy
       
    53 * @param aTableCount
       
    54 * @returns "TImplementationProxy*"
       
    55 */
       
    56 // ----------------------------------------------------------------------------
       
    57 // ImplementationGroupProxy
       
    58 // Fetches ESMRVIEWER constructor methods.
       
    59 // 
       
    60 // @param aTableCount On returns contains the number of constructor methods.
       
    61 // ----------------------------------------------------------------------------
       
    62 //
       
    63 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    64     TInt& aTableCount )
       
    65 	{
       
    66 	aTableCount =
       
    67 	    sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    68 	return ImplementationTable;
       
    69 	}
       
    70 
       
    71 // End of file
       
    72