devicediagnostics/diagsuites/diagtoplevelsuiteplugin/inc/diagtoplevelsuiteplugin.pan
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2007-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 Top-Level Suite Plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef DIAGTOPLEVELSUITEPLUGIN_PAN
       
    20 #define DIAGTOPLEVELSUITEPLUGIN_PAN
       
    21 
       
    22 // Data Types
       
    23 
       
    24 /** Top-Level Suite panic codes.  These are used to identify specific reasons
       
    25  *  why the suite has panicked.
       
    26  */
       
    27 enum TDiagTopLevelSuitePluginPanics
       
    28     {
       
    29     EDiagTopLevelSuitePluginConstruction = 1,
       
    30     EDiagTopLevelSuitePluginBadArgument
       
    31     };
       
    32 
       
    33 
       
    34 /** The panic category for the Top-Level Suite. */
       
    35 _LIT( KDiagTopLevelSuiteName,"Top-Level Suite" );
       
    36 
       
    37 
       
    38 /** The inline panic function. */
       
    39 inline void Panic( TDiagTopLevelSuitePluginPanics aReason )
       
    40     {
       
    41     User::Panic( KDiagTopLevelSuiteName, aReason );
       
    42     }
       
    43 
       
    44 #endif // DIAGTOPLEVELSUITEPLUGIN_PAN