Update contrib.
1 // Copyright (c) 2007-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.
14 // The base class for window server plugins
15 // Interface ID : 0x10285A29
16 // DLL ID : 0x10281920
20 #include "graphics/WSPLUGIN.H"
23 _LIT(KPluginName, "unnamed");
25 // CWsPlugin::CPimpl \\\\\\\\\\\\\\\\\\\\\\\\
27 /** @internalComponent
30 NONSHARABLE_CLASS(CWsPlugin::CPimpl): public CBase
33 CPimpl(CWsPlugin& aGraphic,MWsGraphicDrawerEnvironment& aEnv);
35 MWsGraphicDrawerEnvironment& iEnv;
38 CWsPlugin::CPimpl::CPimpl(CWsPlugin& aPlugin,MWsGraphicDrawerEnvironment& aEnv):
39 iPlugin(aPlugin), iEnv(aEnv)
43 // CWsPlugin \\\\\\\\\\\\\\\\\\\\\\\\
47 EXPORT_C CWsPlugin::CWsPlugin()
53 EXPORT_C CWsPlugin::~CWsPlugin()
57 if(KNullUid != iDtor_ID_Key)
59 REComSession::DestroyedImplementation(iDtor_ID_Key);
63 EXPORT_C void CWsPlugin::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv)
65 iPimpl = new(ELeave) CPimpl(*this,aEnv);
68 EXPORT_C MWsGraphicDrawerEnvironment& CWsPlugin::Env()
73 EXPORT_C const MWsGraphicDrawerEnvironment& CWsPlugin::Env() const
78 EXPORT_C const TDesC & CWsPlugin::PluginName() const