First public contribution.
1 // Copyright (c) 2004-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 "../T_PlatSecECom/T_PlatSecInterface.h"
17 #include <ecom/implementationproxy.h>
20 CPlatSecInterface2 interface implementation.
23 class CPlatSecImpl3 : public CPlatSecInterface3
26 static CPlatSecImpl3* NewL();
27 virtual ~CPlatSecImpl3();
28 virtual TUid ImplId();
34 CPlatSecImpl3* CPlatSecImpl3::NewL()
36 CPlatSecImpl3* self= new (ELeave) CPlatSecImpl3;
40 CPlatSecImpl3::~CPlatSecImpl3()
44 CPlatSecImpl3::CPlatSecImpl3() :
50 TUid CPlatSecImpl3::ImplId()
52 return KUidPlatSecECom3Impl;
55 const TImplementationProxy ImplementationTable[] =
57 //KUidPlatSecECom3Impl.iUid = 0x102026AE
58 IMPLEMENTATION_PROXY_ENTRY(0x102026AE, CPlatSecImpl3::NewL)
61 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
63 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
64 return ImplementationTable;