homescreensrv_plat/servicemodel_api/serviceinterfaceid.h
changeset 66 32469d7d46ff
parent 61 8e5041d13c84
child 73 4bc7b118b3df
equal deleted inserted replaced
61:8e5041d13c84 66:32469d7d46ff
     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 #ifndef SERVICEINTERFACEID_H
       
    20 #define SERVICEINTERFACEID_H
       
    21 
       
    22 #include <QString>
       
    23 
       
    24 /**
       
    25  * @ingroup group_hsservicemodel group_service_api_candidates
       
    26  * @brief Interface id
       
    27  *
       
    28  * @lib servicemodel.lib
       
    29  *
       
    30  * @since S60 ?S60_version
       
    31  *
       
    32  */
       
    33 struct HsServiceInterfaceId
       
    34 {
       
    35     /**
       
    36     * Interface id.
       
    37     */
       
    38     unsigned int mInterfaceId;
       
    39     
       
    40     /**
       
    41     * Implementation id.
       
    42     */
       
    43     QString  mImplementationId;
       
    44 };
       
    45 
       
    46 #endif