56
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 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: Provides an observer interface for server logic AO operation
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
#ifndef M_LBTDELETESESSIONTRIGGEROBSERVER_H
|
|
21 |
#define M_LBTDELETESESSIONTRIGGEROBSERVER_H
|
|
22 |
|
|
23 |
// FORWARD DECLARATION
|
|
24 |
class CLbtDeleteSessionTriggers;
|
|
25 |
|
|
26 |
/**
|
|
27 |
* Class that needs to implement this interface to listen
|
|
28 |
* to events that come from the delete session triggers AO
|
|
29 |
* Operation class.
|
|
30 |
*
|
|
31 |
* @since S60 v4.0
|
|
32 |
*/
|
|
33 |
class MLbtDeleteSessionTriggerObserver
|
|
34 |
{
|
|
35 |
public:
|
|
36 |
/**
|
|
37 |
* This method will be invoked by the delete session trigger AO
|
|
38 |
* object when it completes deletion of all the session triggers of
|
|
39 |
* a particular client.After the operation is complete the operation
|
|
40 |
* object can be deleted. The operation object sends the
|
|
41 |
* pointer itself for identification
|
|
42 |
*
|
|
43 |
* @param[in] aDeleteSessionTriggers pointer to the operation object
|
|
44 |
* which invokes this method
|
|
45 |
*/
|
|
46 |
virtual void HandleDeleteSessionTriggersClosureL(CLbtDeleteSessionTriggers*
|
|
47 |
aDeleteSessionTriggers)=0;
|
|
48 |
};
|
|
49 |
#endif // M_LBTDELETESESSIONTRIGGEROBSERVER_H
|