Update contrib.
1 // Copyright (c) 2002-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.
17 #ifndef __ROMONLYRESOLVER_H__
18 #define __ROMONLYRESOLVER_H__
20 #include "DefaultResolver.h"
21 #include "RegistryData.h"
23 class TEComResolverParams;
28 Special resolver which controls the identification, (resolution), of which implementation
29 will be used to satisfy an interface implementation instantiation. This version only allows
30 plug-ins which are installed in ROM or are updates of ones originally found in ROM.
32 class CRomOnlyResolver : public CDefaultResolver
36 @fn NewL(CRegistryData& aRegistry)
37 Intended Usage : Standardized safe construction which leaves nothing
39 Error Condition : Cannot fully construct because of memory limitations.
42 @return A pointer to the new class
43 @post CRomOnlyResolver is fully constructed,
46 static CRomOnlyResolver* NewL(MPublicRegistry& aRegistry);
49 @fn ~CRomOnlyResolver()
50 Intended Usage : Standard default d'tor
51 Error Condition : None
57 @fn IdentifyImplementationL(TUid aInterfaceUid,
58 const TEComResolverParams& aAdditionalParameters) const
59 Intended Usage : Request that the resolver identify the most appropriate
60 interface implementation.
63 @param aInterfaceUid The interface for which implementations are requested
64 @param aAdditionalParameters Data to be used to refine the search further
65 @return The Uid of the best fit interface implementation - KNullUid if no match is found
66 @pre Object is fully constructed and initialized
67 @post Registry contents are not modified but registry keys may be updated
69 TUid IdentifyImplementationL(TUid aInterfaceUid,
70 const TEComResolverParams& aAdditionalParameters)const ;
73 @fn ListAllL(TUid aInterfaceUid,
74 const TEComResolverParams& aAdditionalParameters) const
75 Intended Usage : List all the implementations which satisfy the specified interface.
78 @param aInterfaceUid The interface for which implementations are requested
79 @param aAdditionalParameters Data to be used to refine the search further
80 @return Pointer to an array of suitable implementations. Ownership of this array
81 is passed to the calling function.
82 @pre Object is fully constructed and initialized
83 @post Registry contents are not modified but registry keys may be updated
85 RImplInfoArray* ListAllL(TUid aInterfaceUid,
86 const TEComResolverParams& aAdditionalParameters)const ;
91 @fn CRomOnlyResolver(CRegistryData& aRegistry)
92 Intended Usage : Standardized default c'tor
93 Error Condition : None
95 @post CRomOnlyResolver is fully constructed
97 explicit CRomOnlyResolver(MPublicRegistry& aRegistry);
101 #endif // __ROMONLYRESOLVER_H__