epoc32/include/mctcertstore.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     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 *
    16 */
    17 
    18 
    19 
    20 
    21 /**
    22  @file 
    23  @publishedPartner
    24  @released
    25 */
    26 
    27 #ifndef __MCTCERTSTORE_H__
    28 #define __MCTCERTSTORE_H__
    29 
    30 #include <cctcertinfo.h>
    31 #include <ccertattributefilter.h>
    32 #include <mcertstore.h>
    33 
    34 /** The UID of read-only certificate store interfaces. */
    35 const TInt KInterfaceCertStore = 0x101F501B;
    36 
    37 /** The UID of filecertstore tokentype */
    38 const TInt KTokenTypeFileCertstore = 0x101F501A;
    39 
    40 /**
    41  * Defines the interface for a read-only certificate store token.
    42  * 
    43  * All the details are defined in MCertStore as they are shared by the unified
    44  * certificate store.
    45  * 
    46  * The class adds no extra member functions or data. 
    47  * 
    48  * @see MCertStore
    49  */
    50 class MCTCertStore : public MCertStore, public MCTTokenInterface
    51 	{
    52 	};
    53 
    54 
    55 #endif