equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // @file |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef TE_C32SERVER_H |
|
19 #define TE_C32SERVER_H |
|
20 |
|
21 #include "TE_c32base.h" |
|
22 #include <test/testexecuteserverbase.h> |
|
23 //C32 Multi Threading header files included |
|
24 #include<te_c32multithreading.h> |
|
25 |
|
26 class CC32TestServer : public CTestServer |
|
27 { |
|
28 public: |
|
29 static CC32TestServer* NewL(); |
|
30 virtual CTestStep* CreateTestStep(const TDesC& aStepName); |
|
31 }; |
|
32 |
|
33 #endif |
|
34 |