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 @test |
|
20 @internalComponent |
|
21 |
|
22 This contains CT_FBServAPIServer |
|
23 */ |
|
24 |
|
25 #if (!defined __T_FBSERV_API_SERVER_H__) |
|
26 #define __T_FBSERV_API_SERVER_H__ |
|
27 |
|
28 // User Include |
|
29 #include "T_DataFbsSession.h" |
|
30 #include "T_DataFbsFont.h" |
|
31 #include "T_DataFbsBitmap.h" |
|
32 #include "T_DataBitmapUtil.h" |
|
33 #include "T_DataFbsTypefaceStore.h" |
|
34 #include "T_DataFbsColor256BitmapUtil.h" |
|
35 |
|
36 #include "T_DataPalette.h" |
|
37 #include "T_DataFbsBitmapDevice.h" |
|
38 #include "T_DataFbsScreenDevice.h" |
|
39 #include "T_DataAlgStyle.h" |
|
40 #include "T_DataMeasureTextInput.h" |
|
41 #include "T_DataMeasureTextOutput.h" |
|
42 |
|
43 #include "TestServerBase.h" |
|
44 |
|
45 class CT_FBServAPIServer : public CTestServerBase |
|
46 { |
|
47 private: |
|
48 class CT_FBServAPIBlock : public CTestBlockController |
|
49 { |
|
50 public: |
|
51 inline CT_FBServAPIBlock(); |
|
52 inline ~CT_FBServAPIBlock(); |
|
53 |
|
54 inline CDataWrapper* CreateDataL( const TDesC& aData ); |
|
55 }; |
|
56 public: |
|
57 inline CT_FBServAPIServer(); |
|
58 inline ~CT_FBServAPIServer(); |
|
59 |
|
60 static CT_FBServAPIServer* NewL(); |
|
61 |
|
62 inline CTestBlockController* CreateTestBlock(); |
|
63 }; |
|
64 |
|
65 #include "T_FBServAPIServer.inl" |
|
66 |
|
67 #endif /* __T_FBSERV_API_SERVER_H__ */ |
|