sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The factory for creating graphic drawer instances sl@0: // sl@0: // sl@0: sl@0: #include "WSGRAPHICDRAWERFACTORY.H" sl@0: #include "Graphics/WSGRAPHICDRAWER.H" sl@0: #include sl@0: #include "panics.h" sl@0: #include sl@0: sl@0: // WsGraphicDrawer \\\\\\\\\\\\\\\\\\\\\\\\ sl@0: sl@0: EXPORT_C CWsGraphicDrawer* WsGraphicDrawer::CreateLC(TUid aType,MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData) sl@0: { sl@0: //static const TUid KWsGraphicDrawerInterface = {0x10281924}; sl@0: //ECOM resolution sl@0: CWsGraphicDrawer* drawer = reinterpret_cast(REComSession::CreateImplementationL(aType,_FOFF(CWsGraphicDrawer,iDtor_ID_Key))); sl@0: User::LeaveIfNull(drawer); sl@0: CleanupStack::PushL(drawer); sl@0: drawer->ConstructL(aEnv,aId,aOwner,aData); sl@0: return drawer; // drawer is left on stack sl@0: } sl@0: sl@0: EXPORT_C void WsGraphicDrawer::FinalClose() sl@0: { sl@0: REComSession::FinalClose(); sl@0: } sl@0: