|
1 /* |
|
2 * Copyright (c) 2001-2009 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 the License "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: |
|
15 * Global header file for the crypto token framework. |
|
16 * Include this header file and you should have everything you'll need |
|
17 * to use the CryptoToken framework. Look inside the included header |
|
18 * files to find out details of the classes. |
|
19 * |
|
20 */ |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 /** |
|
26 @file |
|
27 @publishedAll |
|
28 @released |
|
29 */ |
|
30 |
|
31 #ifndef __CT_H__ |
|
32 #define __CT_H__ |
|
33 |
|
34 #include <e32std.h> |
|
35 #include <e32base.h> |
|
36 |
|
37 #include <ct/tcttokentypeattribute.h> |
|
38 #include <ct/ccttokentypeinfo.h> |
|
39 #include <ct/mcttokentypefilter.h> |
|
40 #include <ct/tctalltokentypes.h> |
|
41 #include <ct/tctfindtokentypesbyinterface.h> |
|
42 #include <ct/tctfindtokentypesbyinterfaceandattribute.h> |
|
43 #include <ct/ccttokentype.h> |
|
44 #include <ct/mcttoken.h> |
|
45 #include <ct/mcttokeninterface.h> |
|
46 #include <ct/rmpointerarray.h> |
|
47 #include <ct/rcpointerarray.h> |
|
48 #include <securitydefs.h> |
|
49 |
|
50 /** |
|
51 * Crypto Token Framework |
|
52 */ |
|
53 |
|
54 /** |
|
55 * Owning pointer arrays |
|
56 * |
|
57 * These are pointer array classes that own their contents. |
|
58 * Close() releases the array, and also releases the contents. |
|
59 */ |
|
60 |
|
61 /** |
|
62 * Token Interfaces |
|
63 * |
|
64 * These are classes defining particular interfaces which tokens |
|
65 * might implement. Other interfaces may be defined by 3rd parties. |
|
66 */ |
|
67 |
|
68 #endif //__CT_H__ |