webservices/wsidentitymanager/inc/senuser.inl
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 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 "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 #ifndef SENUSER_INL
       
    21 #define SENUSER_INL
       
    22 
       
    23 // INCLUDES
       
    24 #include "senuser.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CSenUser::UserName()
       
    30 // -----------------------------------------------------------------------------
       
    31 //
       
    32 EXPORT_C inline TDesC8& CSenUser::UserName() const
       
    33 {
       
    34         return (TDesC8&)iUserName;
       
    35 }
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // CSenUser::PIN()
       
    39 // -----------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C inline TDesC8& CSenUser::PIN() const
       
    42 {
       
    43         return (TDesC8&)iPIN;
       
    44 }
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // CSenUser::Active()
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 EXPORT_C inline TBool CSenUser::Active() const
       
    51 {
       
    52         return iActive;
       
    53 }
       
    54 
       
    55 
       
    56 // -----------------------------------------------------------------------------
       
    57 // CSenUser::Identites()
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 EXPORT_C inline RPointerArray<CSenBaseIdentity>& CSenUser::Identites()
       
    61     {
       
    62     return iBaseIdentities;
       
    63     }
       
    64 
       
    65 
       
    66 	
       
    67 #endif // SENUSER_INL
       
    68