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 TDiagTestExecParam |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // CLASS DECLARATION |
|
20 #include <DiagTestExecParam.h> |
|
21 |
|
22 // SYSTEM INCLUDE FILES |
|
23 |
|
24 // USER INCLUDE FILES |
|
25 |
|
26 // ======== MEMBER FUNCTIONS ======== |
|
27 |
|
28 // --------------------------------------------------------------------------- |
|
29 // TDiagTestExecParam::TDiagTestExecParam() |
|
30 // --------------------------------------------------------------------------- |
|
31 // |
|
32 EXPORT_C TDiagTestExecParam::TDiagTestExecParam( MDiagTestObserver& aObserver, |
|
33 MDiagEngineCommon& aEngine ) |
|
34 : iObserver( aObserver ), |
|
35 iEngine( aEngine ) |
|
36 { |
|
37 } |
|
38 |
|
39 |
|
40 // --------------------------------------------------------------------------- |
|
41 // TDiagTestExecParam::Observer() |
|
42 // --------------------------------------------------------------------------- |
|
43 // |
|
44 EXPORT_C MDiagTestObserver& TDiagTestExecParam::Observer() const |
|
45 { |
|
46 return iObserver; |
|
47 } |
|
48 |
|
49 |
|
50 // --------------------------------------------------------------------------- |
|
51 // TDiagTestExecParam::Engine() |
|
52 // --------------------------------------------------------------------------- |
|
53 // |
|
54 EXPORT_C MDiagEngineCommon& TDiagTestExecParam::Engine() const |
|
55 { |
|
56 return iEngine; |
|
57 } |
|
58 |
|
59 // End of File |
|
60 |
|