equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-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: State idle |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef T_AISTATEIDLE_H |
|
20 #define T_AISTATEIDLE_H |
|
21 |
|
22 #include "aipluginstate.h" |
|
23 #include "aipluginstatemachine.h" |
|
24 |
|
25 /** |
|
26 * @ingroup group_aifw |
|
27 * |
|
28 * Idle state. |
|
29 * |
|
30 * @lib aifw |
|
31 * @since S60 3.2 |
|
32 */ |
|
33 NONSHARABLE_CLASS( TAiStateIdle ) : public MAiPluginState |
|
34 { |
|
35 public: |
|
36 // Construction |
|
37 |
|
38 TAiStateIdle(); |
|
39 |
|
40 // from MAiPluginState |
|
41 |
|
42 void Enter( MAiPluginStateMachine& aStateMachine, |
|
43 TAiStateChanges aStateChange ); |
|
44 |
|
45 TBool HandleEvent( MAiPluginStateMachine& aStateMachine, |
|
46 TAiStateChanges aStateChange ); |
|
47 |
|
48 void Exit( MAiPluginStateMachine& aStateMachine, |
|
49 TAiStateChanges aStateChange ); |
|
50 |
|
51 }; |
|
52 |
|
53 #endif // T_AISTATEIDLE_H |