meetingui/meetingrequestutils/src/main.cpp
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     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:   DLL entry point and ECOM implementation proxy.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <e32base.h>
       
    23 #include <ecom/ImplementationProxy.h>
       
    24 #include "CMRUtilsImpl.h"
       
    25 #include <MeetingRequestUids.hrh>
       
    26 
       
    27 // ==================== LOCAL FUNCTIONS ====================
       
    28 
       
    29 /**
       
    30 *
       
    31 * ImplementationTable
       
    32 *
       
    33 */
       
    34 const TImplementationProxy ImplementationTable[] =
       
    35 	{
       
    36 	    IMPLEMENTATION_PROXY_ENTRY( KMeetingRequestUtilsImplUID,
       
    37 	                                CMRUtilsImpl::NewL )
       
    38 	};
       
    39 
       
    40 /**
       
    41 * ImplementationGroupProxy
       
    42 * @param aTableCount
       
    43 * @returns "TImplementationProxy*"
       
    44 */
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    46     TInt& aTableCount )
       
    47 	{
       
    48 	aTableCount =
       
    49 	    sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    50 	return ImplementationTable;
       
    51 	}
       
    52 
       
    53 // End of file