equal
deleted
inserted
replaced
|
1 //mcustominterface.h |
|
2 |
|
3 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 // All rights reserved. |
|
5 // This component and the accompanying materials are made available |
|
6 // under the terms of "Eclipse Public License v1.0" |
|
7 // which accompanies this distribution, and is available |
|
8 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 // |
|
10 // Initial Contributors: |
|
11 // Nokia Corporation - initial contribution. |
|
12 // |
|
13 // Contributors: |
|
14 // |
|
15 // Description: |
|
16 // |
|
17 |
|
18 |
|
19 |
|
20 /** |
|
21 @file |
|
22 @publishedPartner |
|
23 @released |
|
24 */ |
|
25 |
|
26 #ifndef __MCUSTOMINTERFACE_H |
|
27 #define __MCUSTOMINTERFACE_H |
|
28 |
|
29 #include <e32std.h> |
|
30 |
|
31 class MCustomInterface |
|
32 { |
|
33 public: |
|
34 |
|
35 /* |
|
36 Retrieves a pointer to a Custom Interface |
|
37 @param aInterfaceUid. The UID of the custom interface. |
|
38 @return Pointer to Custom Interface (NULL if the CI does not exist) |
|
39 */ |
|
40 virtual TAny* CustomInterface(TUid aInterfaceId) = 0; |
|
41 |
|
42 }; |
|
43 |
|
44 #endif |