author | ivan.fildichev@opencode.com |
Thu, 18 Nov 2010 15:42:16 +0200 | |
branch | opencode |
changeset 88 | 5e27cc612ac7 |
parent 24 | 6638e7f4bd8f |
permissions | -rw-r--r-- |
24 | 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 |
||
0
3553901f7fa8
Revision: 201005
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
50 |