satui/satplugin/aisatplugininc/mpluginapi.h
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  Defines interface for the operator info engine user
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPLUGINAPI_H
       
    20 #define MPLUGINAPI_H
       
    21 
       
    22 // CLASS DECLARATION
       
    23 /** 
       
    24 * It defines interface for the plugin, contains virtual method which offers plugin 
       
    25 * a way to notify the client e.g. P&S data changes
       
    26 *
       
    27 * @since S60 v3.2
       
    28 */
       
    29 class MPluginAPI 
       
    30     {
       
    31     public: 
       
    32 
       
    33     /**
       
    34     * Virtual method, which the plugin class has to implement.
       
    35     * Method is used to send notification of P&S data's change event
       
    36     * from engine to plugin.
       
    37     *
       
    38     */
       
    39     inline virtual void NotifyContentUpdate() = 0;  
       
    40     };
       
    41 
       
    42 #endif //MPLUGINAPI_H     
       
    43