devicediagnosticsfw/diagframework/inc/diagsuiteobserver.h
branchRCL_3
changeset 25 b183ec05bd8c
parent 24 13d7c31c74e0
child 26 19bba8228ff0
equal deleted inserted replaced
24:13d7c31c74e0 25:b183ec05bd8c
     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:  Interface to observe suite plug-ins
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef DIAGSUITEOBSERVER_H
       
    20 #define DIAGSUITEOBSERVER_H
       
    21 
       
    22 // FORWARD DECLARTION
       
    23 class MDiagSuitePlugin;
       
    24 
       
    25 /**
       
    26 *  Diagnostics Framework Suite Plug-in Observer
       
    27 *
       
    28 *  This interface is called by Suite Plug-ins to notify the engine
       
    29 *  of its suite execution completion.
       
    30 *
       
    31 *  @since S60 v5.0
       
    32 */
       
    33 class MDiagSuiteObserver
       
    34     {
       
    35 public:
       
    36     /**
       
    37     * Notify engine of suite plug-in execution completion.
       
    38     * This should be called when PreTestExecutionL() or
       
    39     * PostTestExecutionL() is called.
       
    40     *
       
    41     * @param aSender - reference to sender object.
       
    42     */
       
    43     virtual void ContinueExecutionL( const MDiagSuitePlugin& aSender ) = 0;
       
    44     };
       
    45 
       
    46 
       
    47 #endif // DIAGSUITEOBSERVER_H
       
    48 
       
    49 // End of File
       
    50