First public contribution.
1 // Copyright (c) 2003-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.
19 #include "HeapTestInterface.h"
20 #include "implementationproxy.h"
22 class CHeapTest : public CHeapTestInterface
25 static CHeapTest* NewL();
28 void DisplayMessage();
33 enum EEE {KSize = 100};
38 // __________________________________________________________________________
41 CHeapTest* CHeapTest::NewL()
43 CHeapTest* self = new (ELeave) CHeapTest();
47 CHeapTest::~CHeapTest()
51 CHeapTest::CHeapTest() :
54 for(TInt8 i=0;i<KSize;i++)
60 TUid CHeapTest::ImplId()
62 TUid idVal = {0x101FE393};
66 void CHeapTest::DisplayMessage()
68 RDebug::Printf("Implementation of DLL with version 2");
71 // __________________________________________________________________________
72 // Exported proxy for instantiation method resolution
73 // Define the interface UIDs
74 const TImplementationProxy ImplementationTable[] =
76 IMPLEMENTATION_PROXY_ENTRY(0x101FE393, CHeapTest::NewL)
79 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
81 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
83 return ImplementationTable;