1.1 --- a/epoc32/include/ct.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/ct.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,68 @@
1.4 -ct.h
1.5 +/*
1.6 +* Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* under the terms of the License "Eclipse Public License v1.0"
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +* Global header file for the crypto token framework.
1.20 +* Include this header file and you should have everything you'll need
1.21 +* to use the CryptoToken framework. Look inside the included header
1.22 +* files to find out details of the classes.
1.23 +*
1.24 +*/
1.25 +
1.26 +
1.27 +
1.28 +
1.29 +/**
1.30 + @file
1.31 + @publishedAll
1.32 + @released
1.33 +*/
1.34 +
1.35 +#ifndef __CT_H__
1.36 +#define __CT_H__
1.37 +
1.38 +#include <e32std.h>
1.39 +#include <e32base.h>
1.40 +
1.41 +#include <ct/tcttokentypeattribute.h>
1.42 +#include <ct/ccttokentypeinfo.h>
1.43 +#include <ct/mcttokentypefilter.h>
1.44 +#include <ct/tctalltokentypes.h>
1.45 +#include <ct/tctfindtokentypesbyinterface.h>
1.46 +#include <ct/tctfindtokentypesbyinterfaceandattribute.h>
1.47 +#include <ct/ccttokentype.h>
1.48 +#include <ct/mcttoken.h>
1.49 +#include <ct/mcttokeninterface.h>
1.50 +#include <ct/rmpointerarray.h>
1.51 +#include <ct/rcpointerarray.h>
1.52 +#include <securitydefs.h>
1.53 +
1.54 +/**
1.55 + * Crypto Token Framework
1.56 + */
1.57 +
1.58 +/**
1.59 + * Owning pointer arrays
1.60 + *
1.61 + * These are pointer array classes that own their contents.
1.62 + * Close() releases the array, and also releases the contents.
1.63 + */
1.64 +
1.65 +/**
1.66 + * Token Interfaces
1.67 + *
1.68 + * These are classes defining particular interfaces which tokens
1.69 + * might implement. Other interfaces may be defined by 3rd parties.
1.70 + */
1.71 +
1.72 +#endif //__CT_H__