imagingandcamerafws/imagingfws/ImageDisplay/src/Resolver/ImageDisplayResolverProxy.cpp
branchRCL_3
changeset 50 948c7f65f6d4
parent 0 40261b775718
equal deleted inserted replaced
49:735348f59235 50:948c7f65f6d4
       
     1 /*
       
     2 * Copyright (c) 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:
       
    15 *
       
    16 */
       
    17 
       
    18 /** @file
       
    19 	@internalComponent */
       
    20 
       
    21 #include <ecom/ecom.h>
       
    22 #include <ecom/implementationproxy.h>
       
    23 
       
    24 #include "ImageDisplayResolver.h"
       
    25 #include "../inc/icl/ImageDisplay.hrh"
       
    26 
       
    27 
       
    28 // Exported proxy for instantiation method resolution
       
    29 
       
    30 // Define the Implementation UIDs for ImageDisplayResolver
       
    31 const TImplementationProxy ImplementationTable[] =
       
    32 	{
       
    33 	IMPLEMENTATION_PROXY_ENTRY(KUidDisplayImplementationResolver, CImageDisplayResolver::NewL)
       
    34 	};
       
    35 
       
    36 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    37 	{
       
    38 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    39 	return ImplementationTable;
       
    40 	}