websrv_pub/web_service_description_api/inc/MSenIdentityProviderIdArray.h
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     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