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.
15 #ifndef __HEAPTESTINTERFACE_H_
16 #define __HEAPTESTINTERFACE_H_
19 #include <ecom/ecom.h>
21 class CHeapTestInterface : public CBase
24 static CHeapTestInterface* NewL();
25 virtual ~CHeapTestInterface();
26 virtual TUid ImplId() = 0;
27 virtual void DisplayMessage()=0;
31 inline CHeapTestInterface();
38 const TUid KCHeapTestInterfaceUid = {0x101FE392};
39 const TUid KCHeapTestImplementationUid = {0x101FE392};
41 inline CHeapTestInterface::CHeapTestInterface() :
46 inline CHeapTestInterface::~CHeapTestInterface()
48 REComSession::DestroyedImplementation(iDtor_ID_Key);
51 inline CHeapTestInterface* CHeapTestInterface::NewL()
53 TUid implUid = {0x101FE393};
54 return REINTERPRET_CAST(CHeapTestInterface*,
55 REComSession::CreateImplementationL(implUid,
56 _FOFF(CHeapTestInterface, iDtor_ID_Key)));
60 #endif //__HEAPTESTINTERFACE_H_