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 |
|
20 #if (!defined __T_ECOM_API_SERVER_H__) |
|
21 #define __T_ECOM_ADDR_API_SERVER_H__ |
|
22 |
|
23 // EPOC Includes |
|
24 #include <test/testblockcontroller.h> |
|
25 #include <test/testserver2.h> |
|
26 |
|
27 // Test Includes |
|
28 #include "T_EComResolverParamsData.h" |
|
29 #include "T_ImplementationInformationData.h" |
|
30 #include "T_EComSessionData.h" |
|
31 |
|
32 class CT_ECOMServer : public CTestServer2 |
|
33 { |
|
34 private: |
|
35 class CT_ECOMBlock : public CTestBlockController |
|
36 { |
|
37 public: |
|
38 inline CT_ECOMBlock(); |
|
39 inline ~CT_ECOMBlock(); |
|
40 |
|
41 inline CDataWrapper* CreateDataL( const TDesC& aData ); |
|
42 }; |
|
43 |
|
44 public: |
|
45 inline CT_ECOMServer(); |
|
46 inline ~CT_ECOMServer(); |
|
47 |
|
48 static CT_ECOMServer* NewL(); |
|
49 |
|
50 inline CTestBlockController* CreateTestBlock(); |
|
51 }; |
|
52 |
|
53 #include "T_EComServer.inl" |
|
54 |
|
55 #endif /* __T_ECOM_API_SERVER_H__ */ |