devicediagnosticsfw/diagframework/inc/diagenginewatchdogtypes.h
branchRCL_3
changeset 26 19bba8228ff0
parent 0 b497e44ab2fc
equal deleted inserted replaced
25:b183ec05bd8c 26:19bba8228ff0
       
     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:  Class declaration for TDiagEngineWatchdogTypes
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef DIAGENGINEWATCHDOGTYPES_H
       
    21 #define DIAGENGINEWATCHDOGTYPES_H
       
    22 
       
    23 /**
       
    24 * These types indicate to engine how long it should wait between each
       
    25 * test execution progress reports.  
       
    26 *
       
    27 * Typically, if a test step requires user interaction, engine should wait
       
    28 * longer before stopping its execution. For non-interactive steps,
       
    29 * engine should not wait as long. 
       
    30 * 
       
    31 * The actual values are specifed by cenrep key value owned by engine.
       
    32 *
       
    33 * Values:
       
    34 * EDiagEngineWatchdogTypeInteractive - Indicates that engine should
       
    35 *   use interactive watchdog timer value.
       
    36 *
       
    37 * EDiagEngineWatchdogTypeAutomatic - Indicates that engine should
       
    38 *   use non-interactive watchdog timer value.
       
    39 *
       
    40 * @since S60 3.2
       
    41 */
       
    42 enum TDiagEngineWatchdogTypes
       
    43     {
       
    44     EDiagEngineWatchdogTypeInteractive   = 0,
       
    45     EDiagEngineWatchdogTypeAutomatic
       
    46     };
       
    47 
       
    48 #endif // DIAGENGINEWATCHDOGTYPES_H
       
    49 
       
    50 // End of File
       
    51