epoc32/include/ct.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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  @file 
    25  @publishedAll
    26  @released
    27 */
    28 
    29 #ifndef __CT_H__
    30 #define __CT_H__
    31 
    32 #include <e32std.h>
    33 #include <e32base.h>
    34 
    35 #include <ct/tcttokentypeattribute.h>
    36 #include <ct/ccttokentypeinfo.h>
    37 #include <ct/mcttokentypefilter.h>
    38 #include <ct/tctalltokentypes.h>
    39 #include <ct/tctfindtokentypesbyinterface.h>
    40 #include <ct/tctfindtokentypesbyinterfaceandattribute.h>
    41 #include <ct/ccttokentype.h>
    42 #include <ct/mcttoken.h>
    43 #include <ct/mcttokeninterface.h>
    44 #include <ct/rmpointerarray.h>
    45 #include <ct/rcpointerarray.h>
    46 #include <securitydefs.h>
    47 
    48 /** 
    49  *	Crypto Token Framework 
    50  */
    51 
    52 /** 
    53  *	Owning pointer arrays
    54  *
    55  *	These are pointer array classes that own their contents.
    56  *	Close() releases the array, and also releases the contents.
    57  */
    58 
    59 /** 
    60  *	Token Interfaces
    61  *
    62  *	These are classes defining particular interfaces which tokens
    63  *	might implement. Other interfaces may be defined by 3rd parties.
    64  */
    65 
    66 #endif //__CT_H__