contextframework/cfw/inc/cfserver/cfscriptowner.h
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2008-2008 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:  Script owner interface.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CFSCRIPTOWNER_H
       
    20 #define CFSCRIPTOWNER_H
       
    21 
       
    22 // SYSTEM INCLUDE FILES
       
    23 #include <e32std.h>
       
    24 
       
    25 // USER INCLUDE FILES
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 
       
    29 // DATA TYPES
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34  * Script owner interface.
       
    35  *
       
    36  * @lib -
       
    37  * @since S60 5.0
       
    38  */
       
    39 class MCFScriptOwner
       
    40     {
       
    41 public:
       
    42 
       
    43     /**
       
    44      * Informs script owner that some scripts have been deregistered
       
    45      * due a change in operation provider (uninstall or upgrade).
       
    46      * @param aScriptIds Script ids which have been deregistered but not
       
    47      *      automatically loaded.
       
    48      */
       
    49     virtual void HandleScriptsRemoved( const RArray<TInt>& aScriptIds ) = 0;
       
    50     };
       
    51 
       
    52 #endif // CFSCRIPTOWNER_H
       
    53