equal
deleted
inserted
replaced
1 /* |
|
2 * ============================================================================ |
|
3 * Name : simlockui.cpp |
|
4 * Part of : Sim Lock UI Application |
|
5 * Description : Sim Lock UI App framework code |
|
6 * Version : |
|
7 * |
|
8 * Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). |
|
9 * All rights reserved. |
|
10 * This component and the accompanying materials are made available |
|
11 * under the terms of "Eclipse Public License v1.0" |
|
12 * which accompanies this distribution, and is available |
|
13 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
14 * |
|
15 * Initial Contributors: |
|
16 * Nokia Corporation - initial contribution. |
|
17 * |
|
18 * Contributors: |
|
19 * |
|
20 * Description: Build info file for Ado domain appinstall |
|
21 * ============================================================================ |
|
22 */ |
|
23 |
|
24 // System Includes |
|
25 #include <eikstart.h> |
|
26 |
|
27 // User Includes |
|
28 #include "simlockuiapplication.h" |
|
29 |
|
30 // --------------------------------------------------------------------------- |
|
31 // NewApplication |
|
32 // --------------------------------------------------------------------------- |
|
33 CApaApplication* NewApplication() |
|
34 { |
|
35 // Create an application, and return a pointer to it |
|
36 return new CSimLockUIApplication; |
|
37 } |
|
38 |
|
39 // --------------------------------------------------------------------------- |
|
40 // E32Main |
|
41 // --------------------------------------------------------------------------- |
|
42 TInt E32Main() |
|
43 { |
|
44 return EikStart::RunApplication( NewApplication ); |
|
45 } |
|
46 |
|
47 // End of file |
|
48 |
|
49 |
|