phonesrv_plat/phone_client_server_information_api/inc/PhoneClientServerDomainPStypes.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2006 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:  Data types passed through Publish and Subscribe
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef PHONECLIENTSERVERDOMAINPSTYPES_H
       
    20 #define PHONECLIENTSERVERDOMAINPSTYPES_H
       
    21 
       
    22 /**
       
    23 * Details how OTA operator logo has changed.
       
    24 * Data is used as key value with KTelOperatorLogoUpdated.
       
    25 * Note: Size of the data must not exceed RProperty::KMaxPropertySize.
       
    26 */
       
    27 struct TTelOTALogoUpdate 
       
    28     {
       
    29     /**
       
    30     * EPSTelephonyLogoChanged - Logo was added or replaced
       
    31     * EPSTelephonyLogoDeleted - Logo was deleted
       
    32     */
       
    33     enum TPSOperatorLogoUpdateEvent
       
    34         {
       
    35         EPSTelephonyLogoChanged,
       
    36         EPSTelephonyLogoDeleted,
       
    37         EPSTelephonyAllLogosDeleted
       
    38         };
       
    39     
       
    40     // Event type
       
    41     TPSOperatorLogoUpdateEvent iEvent;
       
    42 
       
    43     /**
       
    44     * Country code associated to logo, N/A if event
       
    45     * is EPSTelephonyAllLogosDeleted
       
    46     */ 
       
    47     TPhCltCountryCode iMCC;
       
    48 
       
    49     /**
       
    50     * Network code associated to logo, N/A if event
       
    51     * is EPSTelephonyAllLogosDeleted
       
    52     */ 
       
    53     TPhCltNetworkCode iMNC;
       
    54 
       
    55     typedef TPckg<TTelOTALogoUpdate> TOTALogoUpdatePckg;
       
    56     };
       
    57     
       
    58 #endif    // PHONECLIENTSERVERDOMAINPSTYPES_H
       
    59 
       
    60 // End of file