equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef T_COMMS_TELEPHONY_SERVER_H |
|
20 #define T_COMMS_TELEPHONY_SERVER_H |
|
21 |
|
22 // EPOC Includes |
|
23 #include <testserver2.h> |
|
24 |
|
25 /** |
|
26 * This wrapper class extends the test server and creates test server for DataTransfer driver |
|
27 */ |
|
28 class CT_CommsTelephonyServer : public CTestServer2 |
|
29 { |
|
30 private: |
|
31 class CT_CommsTelephonyBlock : public CTestBlockController |
|
32 { |
|
33 public: |
|
34 inline CT_CommsTelephonyBlock(); |
|
35 inline ~CT_CommsTelephonyBlock(); |
|
36 CDataWrapper* CreateDataL( const TDesC& aData ); |
|
37 }; |
|
38 |
|
39 public: |
|
40 |
|
41 static CT_CommsTelephonyServer* NewL(); |
|
42 inline CTestBlockController* CreateTestBlock(); |
|
43 |
|
44 }; |
|
45 |
|
46 #include "T_CommsTelephonyServer.inl" |
|
47 |
|
48 #endif // T_COMMS_TELEPHONY_SERVER_H |
|
49 |
|
50 |