equal
deleted
inserted
replaced
|
1 |
|
2 /* |
|
3 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 * All rights reserved. |
|
5 * This component and the accompanying materials are made available |
|
6 * under the terms of "Eclipse Public License v1.0" |
|
7 * which accompanies this distribution, and is available |
|
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 * |
|
10 * Initial Contributors: |
|
11 * Nokia Corporation - initial contribution. |
|
12 * |
|
13 * Contributors: |
|
14 * |
|
15 * Description: |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MSIPEXSTATEVIEWNOTIFIER_H |
|
22 #define MSIPEXSTATEVIEWNOTIFIER_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32base.h> |
|
26 |
|
27 // CLASS DECLARATIONS |
|
28 /** |
|
29 * Interface for notifing view about status change and |
|
30 * any intresting changes. |
|
31 */ |
|
32 class MSIPExStateViewNotifier |
|
33 { |
|
34 public: |
|
35 /** |
|
36 * ShowStatusInfoL |
|
37 * Called when game status changes. |
|
38 * @param aText A free format text. |
|
39 */ |
|
40 virtual void ShowStatusInfoL( const TDesC& aText ) = 0; |
|
41 |
|
42 /** |
|
43 * ShowInfoL |
|
44 * Called when the new info is available about engine state. |
|
45 * @param aText A 16-bit free format text. |
|
46 */ |
|
47 virtual void ShowInfoL( const TDesC& aText ) = 0; |
|
48 |
|
49 /** |
|
50 * ShowInfoL |
|
51 * Called when the new info is available about engine state. |
|
52 * @param aText A 8-bit free format text. |
|
53 */ |
|
54 virtual void ShowInfoL( const TDesC8& aText ) = 0; |
|
55 }; |
|
56 |
|
57 #endif // MSIPEXSTATEVIEWNOTIFIER_H |
|
58 |
|
59 // End of file |