brandingserver/bsclient/mbsbrandobserverregistrar.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: MBSBrandObserverRegistrar.h
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MBSBRANDOBSERVERREGISTRAR_H
       
    21 #define __MBSBRANDOBSERVERREGISTRAR_H
       
    22 
       
    23 #include <e32std.h>
       
    24 
       
    25 
       
    26 /**
       
    27  * An interface through which client can take into use
       
    28  * available brand data updates.
       
    29  *
       
    30  * @since
       
    31  */
       
    32 class MBSBrandObserverRegistrar
       
    33     {
       
    34     public:
       
    35 
       
    36     	/*
       
    37     	* Registeres the brand observer to server
       
    38     	*/
       
    39         virtual void RegisterObserverToServerL( TRequestStatus& aStatus) = 0;
       
    40 
       
    41 
       
    42     	/*
       
    43     	* Gets the new updated version number 
       
    44     	*/
       
    45         virtual TInt GetNewVersionL() = 0;
       
    46         
       
    47         virtual TInt GetBackupRestoreL() = 0;
       
    48         
       
    49         virtual TInt GetBackupStateL() = 0;
       
    50 
       
    51 protected:
       
    52     	/*
       
    53     	* Destructor
       
    54     	*/
       
    55     	virtual ~MBSBrandObserverRegistrar() {};
       
    56     };
       
    57 
       
    58 #endif //__MBSBRANDOBSERVERREGISTRAR_H