First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definition of the MPolicyObserver class
18 #ifndef __POLICYOBSERVER_H__
19 #define __POLICYOBSERVER_H__
21 #include "UnloadPolicy.h"
22 #include "EComEntry.h"
27 Used by CRegistryData to inform the load manager when a change to the registry
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
39 @param aUnloadPolicy The CUnloadPolicy of the dll which has been removed
42 virtual void DllDeletedL(CUnloadPolicy*& aUnloadPolicy) = 0;
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
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
53 virtual CUnloadPolicy* DllAdded(const CEComEntry& aDllInfo) = 0;
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
60 @param aDllInfo Information on the dll which has been added to the registry
63 virtual void UpdatePolicyIndexL() = 0;
66 #endif // __POLICYOBSERVER_H__