equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Global entry point for the LBS Network Gateway executable |
|
15 // |
|
16 // |
|
17 |
|
18 #include <e32base.h> |
|
19 #include "csecureprocessasbase.h" |
|
20 #include "netgateway.h" |
|
21 |
|
22 CBase* CSecureProcessASBase::CreateRootObjectL() |
|
23 { |
|
24 CNetworkGateway* server = CNetworkGateway::NewL(); |
|
25 return server; |
|
26 } |
|
27 |
|
28 TInt CSecureProcessASBase::EntryPointL(CBase* /*aBaseObj*/) |
|
29 { |
|
30 // EntryPointL not used by CNetGateway |
|
31 return KErrNone; |
|
32 } |
|
33 |
|
34 void CSecureProcessASBase::Final() |
|
35 { |
|
36 } |