devicediagnostics/diagsuites/diagconnectivitysuiteplugin/inc/diagconnectivitysuiteplugin.pan
changeset 18 7d11f9a6646f
parent 4 75a71fdb4c92
child 21 c707676bf59f
equal deleted inserted replaced
4:75a71fdb4c92 18:7d11f9a6646f
     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