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: |
|
15 * An abstract class for an object implementing the state. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef MPHONESTATE_H |
|
21 #define MPHONESTATE_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "mphoneengineevents.h" |
|
25 #include "mphonekeyevents.h" |
|
26 #include "mphonesystemevents.h" |
|
27 #include "mphonemenuandcbaevents.h" |
|
28 #include "mphoneremotecontrolevents.h" |
|
29 #include "mphonedivertif.h" |
|
30 #include "mphoneneclearedhandler.h" |
|
31 #include "mphonenumberentryevents.h" |
|
32 #include "mphonelockinfo.h" |
|
33 #include "mphoneblockedkeys.h" |
|
34 |
|
35 // FORWARD DECLARATIONS |
|
36 |
|
37 // CLASS DECLARATION |
|
38 |
|
39 /** |
|
40 * An abstract class for an object implementing the state. |
|
41 * |
|
42 */ |
|
43 class MPhoneState : |
|
44 public MPhoneEngineEvents, |
|
45 public MPhoneKeyEvents, |
|
46 public MPhoneSystemEvents, |
|
47 public MPhoneMenuAndCbaEvents, |
|
48 public MPhoneRemoteControlEvents, |
|
49 public MPhoneDivertIF, |
|
50 public MPhoneBlockedKeys, |
|
51 public MPhoneNEClearedHandler, |
|
52 public MPhoneNumberEntryEvents, |
|
53 public MPhoneLockInfo |
|
54 { |
|
55 public: |
|
56 |
|
57 /** |
|
58 * Destructor. |
|
59 */ |
|
60 virtual ~MPhoneState() {}; |
|
61 |
|
62 }; |
|
63 |
|
64 #endif // MPHONESTATE_H |
|
65 |
|
66 // End of File |
|