Update contrib.
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();
35 enum EEE {KSize = 100};
40 // __________________________________________________________________________
43 CHeapTest* CHeapTest::NewL()
45 CHeapTest* self = new (ELeave) CHeapTest();
49 CHeapTest::~CHeapTest()
53 CHeapTest::CHeapTest() :
56 for(TInt8 i=0;i<KSize;i++)
62 TUid CHeapTest::ImplId()
64 TUid idVal = {0x101FE393};
68 void CHeapTest::DisplayMessage()
70 RDebug::Printf("Implementation of DLL with version 1");
74 // __________________________________________________________________________
75 // Exported proxy for instantiation method resolution
76 // Define the interface UIDs
77 const TImplementationProxy ImplementationTable[] =
79 IMPLEMENTATION_PROXY_ENTRY(0x101FE393,CHeapTest::NewL)
82 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
84 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
86 return ImplementationTable;