equal
deleted
inserted
replaced
|
1 // Copyright (c) 2005-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 // Customized ECOM resolver for XML plugin parsers |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 */ |
|
22 |
|
23 #ifndef XMLCUSTOMRESOLVER_H |
|
24 #define XMLCUSTOMRESOLVER_H |
|
25 |
|
26 #include <e32def.h> |
|
27 |
|
28 #include <ecom/resolver.h> |
|
29 #include <ecom/publicregistry.h> |
|
30 #include <ecom/ecomresolverparams.h> |
|
31 |
|
32 namespace Xml |
|
33 { |
|
34 class CMatchData; |
|
35 |
|
36 /** |
|
37 Implements the functionality of XML customized resovler. |
|
38 This is used as a plugin resolver for ECOM. |
|
39 |
|
40 Plugin resource file: 10273861.rss. |
|
41 |
|
42 @internalComponent |
|
43 */ |
|
44 class CCustomResolver: public CResolver |
|
45 { |
|
46 |
|
47 public: |
|
48 static CCustomResolver* NewL(MPublicRegistry& aRegistry); |
|
49 ~CCustomResolver(); |
|
50 |
|
51 public: |
|
52 // CResolver derivied methods |
|
53 virtual TUid IdentifyImplementationL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const; |
|
54 virtual RImplInfoArray* ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const; |
|
55 |
|
56 private: |
|
57 CCustomResolver(MPublicRegistry& aRegistry); |
|
58 }; |
|
59 |
|
60 } |
|
61 |
|
62 #endif // XMLCUSTOMRESOLVER_H |
|
63 |
|
64 |