equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: Declaration of CTFAStifTestSuiteAdapter class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __TFASTIFTESTSUITEADAPTER_H__ |
|
20 #define __TFASTIFTESTSUITEADAPTER_H__ |
|
21 |
|
22 #include "ctfatestsuiteadapter.h" |
|
23 |
|
24 class CTFATestSuite; |
|
25 |
|
26 NONSHARABLE_CLASS( CTFAStifTestSuiteAdapter ): public CTFATestSuiteAdapter |
|
27 { |
|
28 public: |
|
29 /** |
|
30 * Creates a new suite adapter |
|
31 */ |
|
32 static CTFAStifTestSuiteAdapter* NewLC( CTFATestSuite& aTestSuite, CTFAEntryPoint* aEntryPoint ); |
|
33 |
|
34 /** |
|
35 * Destructor |
|
36 */ |
|
37 virtual ~CTFAStifTestSuiteAdapter( void ); |
|
38 |
|
39 protected: |
|
40 /** |
|
41 * Constructor |
|
42 */ |
|
43 CTFAStifTestSuiteAdapter( CTFATestSuite& aTestSuite, CTFAEntryPoint* aEntryPoint ); |
|
44 |
|
45 private: |
|
46 /** |
|
47 * Copy constructor is hidden |
|
48 */ |
|
49 CTFAStifTestSuiteAdapter( const CTFAStifTestSuiteAdapter& aAdapter ); |
|
50 |
|
51 /** |
|
52 * Assignment operator is hidden |
|
53 */ |
|
54 CTFAStifTestSuiteAdapter& operator=( const CTFAStifTestSuiteAdapter& aAdapter ); |
|
55 }; |
|
56 |
|
57 #endif |