phoneclientserver/phoneclient/Inc/ImageHandler/CPhCltOperatorLogoContainer.h
changeset 0 ff3b6d0fd310
child 19 7d48bed6ce0c
equal deleted inserted replaced
-1:000000000000 0:ff3b6d0fd310
       
     1 /*
       
     2 * Copyright (c) 2004-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:  Operator logo container.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CPHCLTOPERATORLOGOCONTAINER_H
       
    19 #define CPHCLTOPERATORLOGOCONTAINER_H
       
    20 
       
    21 // INCLUDES
       
    22 #include   <CPhCltBaseImageParams.h>
       
    23 #include    <fbs.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 *  Image handler Subsession.
       
    29 *
       
    30 *  @since Series60 3.0
       
    31 */
       
    32 NONSHARABLE_CLASS( CPhCltOperatorLogoContainer ) : public CBase
       
    33     {
       
    34     public:  // Constructors and destructor
       
    35     
       
    36         /**
       
    37         * Destructor.
       
    38         */
       
    39         ~CPhCltOperatorLogoContainer();
       
    40         
       
    41         /**
       
    42         * Constructor.
       
    43         * @param aCountryCode country code for operator logo
       
    44         * @param aNetworkCode network code for operator logo
       
    45         * @param aBitmap bitmap to store.
       
    46         */
       
    47         CPhCltOperatorLogoContainer( 
       
    48             const TPhCltCountryCode aCountryCode,
       
    49             const TPhCltNetworkCode aNetworkCode,
       
    50             const TPhCltExtOperatorLogoType aLogoType, 
       
    51             CFbsBitmap* aBitmap );
       
    52             
       
    53         // Stored image.
       
    54         CFbsBitmap* iBitmap;
       
    55         
       
    56         // Operator logo country code.
       
    57         TPhCltCountryCode iCountryCode;
       
    58         
       
    59         // Operator logo network code.
       
    60         TPhCltNetworkCode iNetworkCode;
       
    61         
       
    62         // Operator logo type.
       
    63         TPhCltExtOperatorLogoType iLogoType;        
       
    64     };
       
    65 
       
    66 #endif // CPHCLTOPERATORLOGOCONTAINER_H
       
    67 
       
    68 // End of file.