equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2007 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 * |
|
16 */ |
|
17 |
|
18 #ifndef __EIKSVPRV_H__ |
|
19 #define __EIKSVPRV_H__ |
|
20 |
|
21 #ifndef __EIKDIALG_H__ |
|
22 #include <eikdialg.h> |
|
23 #endif |
|
24 |
|
25 /** |
|
26 * CEikServPanicScreen |
|
27 */ |
|
28 class CEikServPanicScreen : public CEikDialog |
|
29 { |
|
30 public: |
|
31 CEikServPanicScreen(RThread& aThread); |
|
32 private: // from CEikDialog |
|
33 void PreLayoutDynInitL(); |
|
34 protected: |
|
35 RThread& iThread; |
|
36 }; |
|
37 |
|
38 /** |
|
39 * CEikServResetReasonDialog |
|
40 * |
|
41 * Not currently used in Avkon, but could be wired up to Shift-Ctrl-Alt-r if |
|
42 * from somewhere if it was thought to be useful |
|
43 * |
|
44 * This dialog examines any information available on HW that recorded the |
|
45 * reason for the reset and displays it. |
|
46 */ |
|
47 class CEikServResetReasonDialog : public CEikDialog |
|
48 { |
|
49 private: // virtual from CEikDialog |
|
50 virtual void PreLayoutDynInitL(); |
|
51 }; |
|
52 |
|
53 #endif |