|
1 /* |
|
2 * Copyright (c) 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 #include "peninputgenericitutlayoutimp.h" |
|
18 #include "peninputgenericitutlayout.h" |
|
19 |
|
20 // --------------------------------------------------------------------------- |
|
21 // CVirtualItutLayoutImp::NewL |
|
22 // (other items were commented in a header) |
|
23 // --------------------------------------------------------------------------- |
|
24 // |
|
25 CVirtualItutLayoutImp* CVirtualItutLayoutImp::NewL(TAny* /*aInitParams*/) |
|
26 { |
|
27 CVirtualItutLayoutImp* self = new (ELeave) CVirtualItutLayoutImp(); |
|
28 CleanupStack::PushL( self ); |
|
29 self->ConstructL(); |
|
30 CleanupStack::Pop( self ); |
|
31 return self; |
|
32 } |
|
33 |
|
34 // --------------------------------------------------------------------------- |
|
35 // CVirtualItutLayoutImp::~CVirtualItutLayoutImp |
|
36 // (other items were commented in a header) |
|
37 // --------------------------------------------------------------------------- |
|
38 // |
|
39 CVirtualItutLayoutImp::~CVirtualItutLayoutImp() |
|
40 { |
|
41 } |
|
42 |
|
43 // --------------------------------------------------------------------------- |
|
44 // CVirtualItutLayoutImp::CVirtualItutLayoutImp |
|
45 // (other items were commented in a header) |
|
46 // --------------------------------------------------------------------------- |
|
47 // |
|
48 CVirtualItutLayoutImp::CVirtualItutLayoutImp() |
|
49 { |
|
50 } |
|
51 |
|
52 // --------------------------------------------------------------------------- |
|
53 // CVirtualItutLayoutImp::ConstructL |
|
54 // (other items were commented in a header) |
|
55 // --------------------------------------------------------------------------- |
|
56 // |
|
57 void CVirtualItutLayoutImp::ConstructL() |
|
58 { |
|
59 } |
|
60 |
|
61 // --------------------------------------------------------------------------- |
|
62 // CVirtualItutLayoutImp::CreateFepUiLayoutL |
|
63 // (other items were commented in a header) |
|
64 // --------------------------------------------------------------------------- |
|
65 // |
|
66 CFepUiLayout* CVirtualItutLayoutImp::CreateFepUiLayoutL(MLayoutOwner* aLayoutOwner, |
|
67 const TAny* aData) |
|
68 { |
|
69 CGenericItutUiLayout* uiLayout = CGenericItutUiLayout::NewL(aLayoutOwner, aData); |
|
70 return uiLayout; |
|
71 } |
|
72 |
|
73 // End Of File |