equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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: In case that Service Consumer (owner of SC instance) needs |
|
15 * some special, even properietary interface, it can request |
|
16 * an implementation of such interface by calling |
|
17 * CSenServiceManager::InterfaceByUid(UID) and acquire |
|
18 * on of the M-class interfaces defined in this file. |
|
19 * |
|
20 */ |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 #ifndef M_SEN_SERVICE_CONNNECTION_INTERFACES_H |
|
30 #define M_SEN_SERVICE_CONNNECTION_INTERFACES_H |
|
31 |
|
32 // CONST |
|
33 // UIDs for the supported, new *service manager interfaces*: |
|
34 namespace |
|
35 { |
|
36 const TUid KSenInterfaceUidInternalServiceManager = { 0xE760F698 }; // MSenInternalServiceManager |
|
37 } |
|
38 |
|
39 typedef RPointerArray<CSenIdentityProvider> RIdentityProviderArray; |
|
40 |
|
41 // CLASS DECLARATION |
|
42 /** |
|
43 * Internal callback interfaces: |
|
44 */ |
|
45 class MSenInternalServiceManager |
|
46 { |
|
47 public: |
|
48 virtual TInt IdentityProvidersL( RIdentityProviderArray& aList ) = 0; |
|
49 }; |
|
50 |
|
51 #endif // M_SEN_SERVICE_CONNNECTION_INTERFACES_H |