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 // |
|
15 |
|
16 #include <e32std.h> |
|
17 #include <e32base.h> |
|
18 #include "LbsInternalInterface.h" |
|
19 |
|
20 #include "lbsnetlocmanlogic.h" |
|
21 #include "cprocesslaunch.h" |
|
22 #include "csecureprocessasbase.h" |
|
23 |
|
24 |
|
25 CBase* CSecureProcessASBase::CreateRootObjectL() |
|
26 { |
|
27 CNetLocManLogic* server = CNetLocManLogic::NewL(); |
|
28 TVersion version; |
|
29 version = server->Version(); |
|
30 return server; |
|
31 } |
|
32 |
|
33 TInt CSecureProcessASBase::EntryPointL(CBase* /*aBaseObj*/) |
|
34 { |
|
35 // EntryPointL not used by manager |
|
36 return KErrNone; |
|
37 } |
|
38 |
|
39 // must be static |
|
40 void CSecureProcessASBase::Final() |
|
41 { |
|
42 } |
|
43 |