epoc32/include/mw/msenidentityprovideridarray.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) 2002-2005 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 "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:        An abstract class used to reference to some
    15 *                CSenIdentityProviderIdArray owned elsewhere.
    16 *
    17 */
    18 
    19 
    20 
    21 
    22 
    23 
    24 
    25 
    26 #ifndef M_SEN_IDENTITY_PROVIDER_ID_ARRAY_H
    27 #define M_SEN_IDENTITY_PROVIDER_ID_ARRAY_H
    28 
    29 //  INCLUDES
    30 #include <e32base.h>
    31 #include <badesca.h>
    32 #include <e32des8.h>
    33 
    34 // CLASS DECLARATION
    35 
    36 /**
    37 * Abstract interface for ProviderID array classes
    38 * @lib SenServDesc.lib
    39 * @since Series60 3.0
    40 */
    41 class MSenIdentityProviderIdArray
    42     {
    43     public: // New functions
    44         
    45         /**
    46         * Method to check if the array is defined as strict.
    47         * @since Series60 3.0
    48         * @return ETrue if array is strict, EFalse if not
    49         */
    50         IMPORT_C virtual TBool IsStrict() const = 0;
    51 
    52         /**
    53         * Method for setting the strict flag.
    54         * @since Series60 3.0
    55         * @param aStrict the value the flag should be set.
    56         */
    57         virtual void SetStrict(TBool aStrict) = 0; // check: altered in 3.0 BC FIX
    58         //IMPORT_C virtual void SetStrict(TBool aStrict) = 0;
    59     };
    60 
    61 #endif // M_SEN_IDENTITY_PROVIDER_ID_ARRAY_H
    62 
    63 // End of File
    64 
    65