equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2009 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: Interface to response for Number Entry clearing. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef MPHONENUMBERENTRYEVENTS_H |
|
19 #define MPHONENUMBERENTRYEVENTS_H |
|
20 |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32def.h> |
|
24 #include <e32keys.h> |
|
25 #include <w32std.h> |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * MPhoneKeyEvents: |
|
31 * An abstract class whose purpose is to define an interface from the key |
|
32 * event handler to the UI controller. |
|
33 */ |
|
34 |
|
35 class MPhoneNumberEntryEvents |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Destructor |
|
41 */ |
|
42 virtual ~MPhoneNumberEntryEvents(){}; |
|
43 |
|
44 public: // Message handling functions |
|
45 |
|
46 virtual void HandleNumberEntryEdited() = 0; |
|
47 }; |
|
48 |
|
49 #endif // MPHONENUMBERENTRYEVENTS_H |
|