landmarks/locationlandmarks/server/inc/EPos_MPosLmBackupObserver.h
changeset 0 667063e416a2
equal deleted inserted replaced
-1:000000000000 0:667063e416a2
       
     1 /*
       
     2 * Copyright (c) 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: 
       
    15 *       Interface for observing backup events published by system backup.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef MPOSLMBACKUPOBSERVER_H
       
    21 #define MPOSLMBACKUPOBSERVER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 /**
       
    27 *  Interface for observing backup events published by system backup.
       
    28 *
       
    29 *  This class is subclassed by clients who wants to listen for system
       
    30 *  backup events. Only 'start backup' events will be issued.
       
    31 */
       
    32 class MPosLmBackupObserver
       
    33     {
       
    34      public:  // New functions
       
    35 
       
    36         /**
       
    37         * Called to report that a backup has started.
       
    38         *
       
    39         *
       
    40         */
       
    41         virtual void HandleBackupEvent() = 0;
       
    42 
       
    43     };
       
    44 
       
    45 #endif      // MPOSLMBACKUPOBSERVER_H
       
    46 
       
    47 // End of File