os/ossrv/lowlevellibsandfws/pluginfw/Framework/MultipleImageTest/MultipleImageExampleImpl18.cpp
First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "MultipleImageExampleInterface.h"
17 #include <ecom\ImplementationProxy.h>
20 CMultipleImageInterface1 interface implementation.
23 class CMultipleImageImpl : public CMultipleImageInterface1
26 static CMultipleImageImpl* NewL();
27 virtual ~CMultipleImageImpl();
28 virtual TUid ImplId();
34 CMultipleImageImpl* CMultipleImageImpl::NewL()
36 CMultipleImageImpl* self= new (ELeave) CMultipleImageImpl;
40 CMultipleImageImpl::~CMultipleImageImpl()
44 CMultipleImageImpl::CMultipleImageImpl() :
45 CMultipleImageInterface1()
50 TUid CMultipleImageImpl::ImplId()
52 return KUidMultipeImageImpl18;
55 const TImplementationProxy ImplementationTable[] =
57 //KUidMultipeImageImpl18.iUid = 0x1028232A
58 IMPLEMENTATION_PROXY_ENTRY(0x1028232A, CMultipleImageImpl::NewL)
61 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
63 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
64 return ImplementationTable;