XDMEngine/src/XdmCredentials.cpp
branchGCC_SURGE
changeset 28 d9861ae9169c
parent 23 77cb48a03620
parent 26 04ca1926b01c
equal deleted inserted replaced
23:77cb48a03620 28:d9861ae9169c
     1 /*
       
     2 * Copyright (c) 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:   XDM Engine credentials
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include "XdmCredentials.h"
       
    21 
       
    22 // ---------------------------------------------------------
       
    23 // TXdmCredentials::TXdmCredentials
       
    24 //
       
    25 // ---------------------------------------------------------
       
    26 //
       
    27 EXPORT_C TXdmCredentials::TXdmCredentials()
       
    28     {
       
    29     }
       
    30 
       
    31 // ---------------------------------------------------------
       
    32 // TXdmCredentials::TXdmCredentials
       
    33 //
       
    34 // ---------------------------------------------------------
       
    35 //
       
    36 EXPORT_C TXdmCredentials::TXdmCredentials( const TDesC& aUserName,
       
    37                                            const TDesC& aPassword )
       
    38     {
       
    39     iUserName.Copy( aUserName );
       
    40     iPassword.Copy( aPassword );
       
    41     }
       
    42 
       
    43             
       
    44 // End of File
       
    45