1 // Copyright (c) 1997-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.
16 #ifndef __FEPPLUGIN_H__
17 #define __FEPPLUGIN_H__
23 class CCoeFepParameters;
25 const TUid KUidFepPluginInterface = { 0x1020233F };
29 Abstract base class for FEP plug ins
33 class CCoeFepPlugIn : public CBase
36 inline static CCoeFepPlugIn* NewL(TUid aFepUid);
37 virtual ~CCoeFepPlugIn();
39 /** Creates a fully constructed object of CCoeFEP.
41 @param aConeEnvironment A reference to the application's control environment.
42 @param aFepParameters FEP parameters.
43 @return A pointer to the newly created object.
45 virtual CCoeFep* NewFepL(CCoeEnv& aConeEnvironment, const CCoeFepParameters& aFepParameters) = 0;
47 /** Runs the FEP settings dialog.
49 @param aConeEnvironment A reference to the application's control environment.
51 virtual void SynchronouslyExecuteSettingsDialogL(CCoeEnv& aConeEnvironment) = 0;
57 #include <fepplugin.inl>
59 #endif // __FEPPLUGIN_H__