emailcontacts/remotecontactlookup/engine/inc/tpbkxremotecontactlookupprotocolaccountid.h
branchRCL_3
changeset 12 4ce476e64c59
parent 11 0396474f30f5
child 13 8592a65ad3fb
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
     1 /*
       
     2 * Copyright (c) 2007 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:  Definition of the class TPbkxRemoteContactLookupProtocolAccountId
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TPBKXREMOTECONTACTLOOKUPPROTOCOLACCOUNTID_H
       
    20 #define TPBKXREMOTECONTACTLOOKUPPROTOCOLACCOUNTID_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 /**
       
    25  *  Represents a protocol account identifier.
       
    26  *
       
    27  *  @since S60 3.1
       
    28  */
       
    29 class TPbkxRemoteContactLookupProtocolAccountId 
       
    30     {
       
    31 
       
    32 public:
       
    33 
       
    34     /**
       
    35      * Constructor.
       
    36      *
       
    37      * @param aProtocolUid protocol ECOM plugin identifier
       
    38      * @param aAccountId account identifier
       
    39      */
       
    40     TPbkxRemoteContactLookupProtocolAccountId( TUid aProtocolUid, TUint aAccountId ) 
       
    41         : iProtocolUid( aProtocolUid ), iAccountId( aAccountId ) {};
       
    42 
       
    43     /**
       
    44      * Protocol ECOM plugin identifier
       
    45      */
       
    46     TUid iProtocolUid;
       
    47 
       
    48     /**
       
    49      * Account identifier
       
    50      */
       
    51     TUint iAccountId;   
       
    52     };
       
    53 
       
    54 #endif // TPBKXREMOTECONTACTLOOKUPPROTOCOLACCOUNTID_H