diff -r 000000000000 -r e4d67989cc36 syslibsapitest/syslibssvs/ecom/common/inc/TestEComInterface.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/syslibsapitest/syslibssvs/ecom/common/inc/TestEComInterface.inl Tue Feb 02 02:01:42 2010 +0200 @@ -0,0 +1,61 @@ +/* +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + +/** + @internalComponent + Comments : This file contains the placeholder class + which represents the interface creation. + */ + +#include "TestEComInterface.h" + +inline CTestEComInterface::CTestEComInterface() +: CBase() +/** +Constructor +@return None +*/ + { + // Do nothing + } + +inline CTestEComInterface::~CTestEComInterface() +/** +Destructor +@return None +*/ + { + // Destroy any instance variables and then + // inform the framework that this specific + // instance of the interface has been destroyed. + REComSession::DestroyedImplementation(iDtor_ID_Key); + } + +inline CTestEComInterface* CTestEComInterface::NewL(const TUid aUid) +/** +NewL creates the new interface +@return the new interface +*/ + { + // The CreateImplementationL method will return + // the created item. + return REINTERPRET_CAST (CTestEComInterface*, + REComSession::CreateImplementationL(aUid, _FOFF(CTestEComInterface,iDtor_ID_Key)) + ); + }