devicediagnosticsfw/diagframework/src/diagsuiteexecparam.cpp
branchRCL_3
changeset 61 b183ec05bd8c
parent 59 13d7c31c74e0
child 62 19bba8228ff0
equal deleted inserted replaced
59:13d7c31c74e0 61: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:  Class definition of TDiagSuiteExecParam
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // CLASS DECLARATION
       
    20 #include <DiagSuiteExecParam.h>
       
    21 
       
    22 // SYSTEM INCLUDE FILES
       
    23 
       
    24 // ======== MEMBER FUNCTIONS ========
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // TDiagSuiteExecParam::TDiagSuiteExecParam()
       
    28 // ---------------------------------------------------------------------------
       
    29 //
       
    30 EXPORT_C TDiagSuiteExecParam::TDiagSuiteExecParam( MDiagSuiteObserver& aObserver,
       
    31                                                     MDiagEngineCommon& aEngine )
       
    32     :   iObserver( aObserver ),
       
    33         iEngine( aEngine )
       
    34     {
       
    35     }
       
    36 
       
    37 // ---------------------------------------------------------------------------
       
    38 // TDiagSuiteExecParam::Observer()
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C MDiagSuiteObserver& TDiagSuiteExecParam::Observer() const
       
    42     {
       
    43     return iObserver;
       
    44     }
       
    45 
       
    46 
       
    47 // ---------------------------------------------------------------------------
       
    48 // TDiagSuiteExecParam::Engine()
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 EXPORT_C MDiagEngineCommon& TDiagSuiteExecParam::Engine() const
       
    52     {
       
    53     return iEngine;
       
    54     }
       
    55 
       
    56 // End of File
       
    57