equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006, 2007 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: Class definition of Strategy Engine Observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef C_LBTSTRATEGYENGINEOBSERVER_H |
|
21 #define C_LBTSTRATEGYENGINEOBSERVER_H |
|
22 |
|
23 |
|
24 #include "lbttriggerstatusobserver.h" |
|
25 |
|
26 |
|
27 /** |
|
28 * This is an observer class that is implemented by CLbtStrategy class instance. |
|
29 * This class defines the set of callback methods used by the instance of |
|
30 * CLbtStrategyEngineto to notify trigger fire events, triggering supervision |
|
31 * status and retrieve triggering settings information. |
|
32 * |
|
33 * @since Series 60 4.0 |
|
34 */ |
|
35 class MLbtStrategyEngineObsrvr : public MLbtTriggerStatusObsrvr |
|
36 |
|
37 { |
|
38 |
|
39 public: |
|
40 |
|
41 /** |
|
42 * Reports triggering supervision status to the instance of CLbtStrategy |
|
43 */ |
|
44 virtual void ReportTriggeringSupervisionStatus( |
|
45 const TLbtStrategySupervisionDynamicInfo& aDynInfo ) = 0; |
|
46 |
|
47 /** |
|
48 * Retrieves triggering supervision settings |
|
49 */ |
|
50 virtual void RetrieveTriggeringSettings( |
|
51 TLbtStrategyTriggeringSupervisionSettings& aSettings ) = 0; |
|
52 |
|
53 }; |
|
54 |
|
55 #endif // C_LBTSTRATEGYENGINEOBSERVER_H |