devicediagnostics/diagsuites/diagconnectivitysuiteplugin/inc/diagconnectivitysuiteplugin.pan
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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: Panic functionality for the Hardware Suite Plugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef DIAGCONNECTIVITYSUITEPLUGIN_PAN |
|
20 #define DIAGCONNECTIVITYSUITEPLUGIN_PAN |
|
21 |
|
22 // Data Types |
|
23 |
|
24 /** Hardware Suite panic codes. These are used to identify specific reasons |
|
25 * why the suite has panicked. |
|
26 */ |
|
27 enum TDiagConnectivitySuitePluginPanics |
|
28 { |
|
29 EDiagConnectivitySuitePluginConstruction = 1, |
|
30 EDiagConnectivitySuitePluginBadArgument |
|
31 }; |
|
32 |
|
33 inline void Panic( TDiagConnectivitySuitePluginPanics aReason ) |
|
34 { |
|
35 _LIT( KDiagConnectivitySuiteName,"Connectivity Suite" ); |
|
36 User::Panic( KDiagConnectivitySuiteName, aReason ); |
|
37 } |
|
38 |
|
39 #endif // DIAGCONNECTIVITYSUITEPLUGIN_PAN |