os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/PolicyObserver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The definition of the MPolicyObserver class
    15 // 
    16 //
    17 
    18 #ifndef __POLICYOBSERVER_H__
    19 #define __POLICYOBSERVER_H__
    20 
    21 #include "UnloadPolicy.h"
    22 #include "EComEntry.h"
    23 
    24 /**
    25 	@internalComponent
    26 	@since 7.0
    27 	Used by CRegistryData to inform the load manager when a change to the registry
    28 	occurs.
    29  */
    30 
    31 class MPolicyObserver
    32 	{
    33 public:
    34 /**
    35 	@fn				DllDeletedL(CUnloadPolicy*& aUnloadPolicy) = 0
    36 	Intended Usage	: Called to indicate that a dll has been removed from the registry
    37 	Error Condition	: Leaves with an error code depending on implementation
    38 	@since			7.0
    39 	@param			aUnloadPolicy The CUnloadPolicy of the dll which has been removed
    40 */
    41 	
    42 	virtual void DllDeletedL(CUnloadPolicy*& aUnloadPolicy) = 0;
    43 
    44 /**
    45 	@fn				DllAdded(const CEComEntry& aDllInfo) = 0
    46 	Intended Usage	: Called to indicate that a dll has been added to the registry
    47 	Error Condition	: None
    48 	@since			7.0
    49 	@param			aDllInfo Information on the dll which has been added to the registry
    50 	@return			The unload policy for the dll if one exists, NULL otherwise
    51 */
    52 	
    53 	virtual CUnloadPolicy* DllAdded(const CEComEntry& aDllInfo) = 0;
    54 
    55 /**
    56 	@fn				UpdatePolicyIndexL() = 0
    57 	Intended Usage	: Called to indicate the index of unload policies will be out of date 
    58 	Error Condition	: Leaves with an error code depending on implementation
    59 	@since			7.0
    60 	@param			aDllInfo Information on the dll which has been added to the registry
    61 */
    62 	
    63 	virtual void UpdatePolicyIndexL() = 0;
    64 	};
    65 
    66 #endif // __POLICYOBSERVER_H__