equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006-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: AppUi class of application |
|
15 * Since : 3.2 |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef M_MCASPLASHSCREENOBSERVER_H |
|
21 #define M_MCASPLASHSCREENOBSERVER_H |
|
22 |
|
23 /** |
|
24 * Splash screen observer |
|
25 * |
|
26 * Used to inform its inherited classes about events in the |
|
27 * splash screen showing process |
|
28 * |
|
29 * @since S60 v3.1 |
|
30 */ |
|
31 class MCASplashScreenObserver |
|
32 { |
|
33 |
|
34 public: |
|
35 |
|
36 /** |
|
37 * SplashScreenShowed. |
|
38 * |
|
39 * @since S60 ?S60_version |
|
40 * @param ?arg1 ?description |
|
41 * @param ?arg2 ?description |
|
42 * @return ?description |
|
43 */ |
|
44 virtual void SplashScreenShowed() = 0; |
|
45 |
|
46 }; |
|
47 |
|
48 |
|
49 #endif // M_NCDSPLASHSCREENOBSERVER_H |