fepstub/UiPlugins/AknFepUiInterface/inc/AknFepUiInterfacePlugin.h
changeset 23 f043c81198e3
equal deleted inserted replaced
20:1dabf2d94237 23:f043c81198e3
       
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0""
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:           
       
    15 *       Interface for FEP UI plugins
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 
       
    27 
       
    28 
       
    29 
       
    30 #ifndef AKNFEPUIINTERFACEPLUGIN_H
       
    31 #define AKNFEPUIINTERFACEPLUGIN_H
       
    32 
       
    33 #include <e32base.h>
       
    34 
       
    35 class CAknFepUIInterface;
       
    36 
       
    37 class CFepUiInterfacePlugin : public CBase
       
    38 	{
       
    39 public:
       
    40 	enum TInterfaceUid { ETypeId = 0x10285779 };
       
    41 	virtual TBool UseThisPlugin() const = 0;
       
    42 	virtual CAknFepUIInterface* NewImplL() = 0;
       
    43 	};
       
    44 
       
    45 #endif