widgets/widgetapp/inc/ApiProvider.h
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 2002 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 the License "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 *      API provider.
       
    16 *  
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef MAPIPROVIDER_H
       
    22 #define MAPIPROVIDER_H
       
    23 
       
    24 // INCLUDE FILES
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Interface to query several API implementations.
       
    32 *  
       
    33 *  @lib WidgetUI.app
       
    34 *  @since Series 60 1.2
       
    35 */
       
    36 class MApiProvider
       
    37     {
       
    38     public: // New functions
       
    39 
       
    40         /**
       
    41         * Exit the widget, if the widget is the only widget running, exit the application
       
    42         * @since 3.1
       
    43         */
       
    44         virtual void ExitWidget( ) = 0;
       
    45 };
       
    46 
       
    47 #endif
       
    48 
       
    49 // End of File