equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-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: Definition of the class MESMRCasPluginUiLauncherObserver |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef MESMRCASPLUGINUILAUNCHEROBSERVER_H_ |
|
19 #define MESMRCASPLUGINUILAUNCHEROBSERVER_H_ |
|
20 |
|
21 /** |
|
22 * MESMRCasPluginUiLauncherObserver defines observer |
|
23 * interface for asynchronous callback for |
|
24 * notifying that editor is initialized and |
|
25 * ready to be shown on screen. |
|
26 */ |
|
27 class MESMRCasPluginUiLauncherObserver |
|
28 { |
|
29 public: // destructor |
|
30 virtual ~MESMRCasPluginUiLauncherObserver() {} |
|
31 |
|
32 public: // interface |
|
33 |
|
34 /** |
|
35 * Called to notify observer that MR editor initialization |
|
36 * is done and it will be shown on display. |
|
37 */ |
|
38 virtual void MREditorInitializationComplete() = 0; |
|
39 }; |
|
40 |
|
41 #endif // MESMRCASPLUGINUILAUNCHEROBSERVER_H_ |
|
42 |
|
43 // EOF |