devicediagnosticsfw/diagframework/inc/diagengineevents.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 DiagFwInternal::TEvent
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef DIAGENGINEEVENTS_H
       
    20 #define DIAGENGINEEVENTS_H
       
    21 
       
    22 // SYSTEM INCLUDES
       
    23 #include <DiagResultsDatabaseItem.h>    // CDiagResultsDatabaseItem
       
    24 #include <DiagEngineCommon.h>           // MDiagEngineCommon
       
    25 
       
    26 class MDiagPlugin;
       
    27 class MDiagTestPlugin;
       
    28 class MDiagSuitePlugin;
       
    29 
       
    30 namespace DiagFwInternal
       
    31     {
       
    32 typedef enum
       
    33     {
       
    34     EEventExecute,              // ::ExecuteTestL() is called.
       
    35     EEventPlanCreated,          // Execution plan is created.
       
    36     EEventExecuteNext,          // Execute next item in plan.
       
    37     EEventTestProgress,         // ::TestProgressL is called.
       
    38     EEventAllPluginsCompleted,  // All plug-ins are completed.
       
    39     EEventResumeToRunning,      // Resume to Runinng state from suspend
       
    40     EEventResumeToCreatingPlan, // Resume to Creating plan from suspend
       
    41     EEventSkip,                 // ::ExecutionStopL w/ Skip called
       
    42     EEventCancelAll,            // ::ExecutionStopL w/ CancelAll called
       
    43     EEventSuspend,              // ::SuspendL called.
       
    44     EEventVoiceCallActive,      // MO / MT call
       
    45     EEventFinalized             // db record and plug-ins are finalized.
       
    46     } TEvent;
       
    47     } // end of namespace DiagFwInternal
       
    48 
       
    49 #endif // DIAGENGINEEVENTS_H
       
    50 
       
    51 // End of File
       
    52