brandingserver/inc/mbsbrandchangeobserver.h
changeset 0 e6b17d312c8b
child 21 cfd5c2994f10
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     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: MBSBrandChangeObserver 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MBSBRANDCHANGEOBSERVER_H
       
    21 #define __MBSBRANDCHANGEOBSERVER_H
       
    22 
       
    23 #include <e32std.h>
       
    24 
       
    25 
       
    26 /**
       
    27  * An interface through which client gets information
       
    28  * about available brand data updates.
       
    29  *
       
    30  * @since
       
    31  */
       
    32 class MBSBrandChangeObserver
       
    33     {
       
    34     public:
       
    35 
       
    36     	/*
       
    37     	* Gets called when brand data update is available.
       
    38     	* Client can then decide wether to use the old one
       
    39     	* or the updated one.
       
    40     	* @return ETrue if observer should continue observing
       
    41     	*/
       
    42         virtual TBool BrandUpdateAvailable( TInt aNewVersion ) = 0;
       
    43 
       
    44 
       
    45 protected:
       
    46     	/*
       
    47     	* Destructor
       
    48     	*/
       
    49     	virtual ~MBSBrandChangeObserver() {};
       
    50     };
       
    51 
       
    52 #endif //__MBSBRANDCHANGEOBSERVER_H