First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Provides the interface to an observer that wishes to recieve suspend
15 // and resume notifications.
19 #ifndef __MBACKUPNOTIFIEROBSERVER_H__
20 #define __MBACKUPNOTIFIEROBSERVER_H__
23 class MBackupNotifierObserver
31 Intended Usage : Provides suspension of behaviour in the class
32 implementing this interface.
33 Error Condition : Dependent upon the implementation class Suspend().
35 @pre Implementation class has been fully constructed.
36 @post Some action has been taken to change the behaviour
37 of the implementation class of this interface.
40 virtual TInt Suspend() = 0;
44 Intended Usage : Provides resumption of suspended behaviour in the class
45 implementing this interface.
46 Error Condition : Dependent upon the implementation class Resume().
48 @pre Implementation class has been fully constructed.
49 @post Some action has been taken to change the behaviour
50 of the implementation class of this interface.
53 virtual TInt Resume() = 0;
56 #endif // __MBACKUPNOTIFIEROBSERVER_H__