author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Wed, 18 Aug 2010 09:49:03 +0300 | |
changeset 41 | 3a6b55c6390c |
parent 28 | 075425b8d9a4 |
permissions | -rw-r--r-- |
24 | 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 |
||
18 |
// System includes |
|
19 |
#include <StringLoader.h> |
|
20 |
||
21 |
// User includes |
|
22 |
#include "radioengineutils.h" |
|
23 |
#include "cradioenginetls.h" |
|
24 |
||
25 |
// --------------------------------------------------------------------------- |
|
26 |
// |
|
27 |
// --------------------------------------------------------------------------- |
|
28 |
// |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
29 |
EXPORT_C void RadioEngineUtils::InitializeL() |
24 | 30 |
{ |
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
31 |
CRadioEngineTls::InitializeL(); |
24 | 32 |
CRadioEngineTls::Instance().AddRef(); |
33 |
} |
|
34 |
||
35 |
// --------------------------------------------------------------------------- |
|
36 |
// |
|
37 |
// --------------------------------------------------------------------------- |
|
38 |
// |
|
39 |
EXPORT_C void RadioEngineUtils::Release() |
|
40 |
{ |
|
41 |
CRadioEngineTls::Instance().Release(); |
|
42 |
} |
|
43 |
||
44 |
// --------------------------------------------------------------------------- |
|
45 |
// |
|
46 |
// --------------------------------------------------------------------------- |
|
47 |
// |
|
48 |
EXPORT_C MRadioEngineLogger* RadioEngineUtils::Logger() |
|
49 |
{ |
|
50 |
return CRadioEngineTls::Instance().Logger(); |
|
51 |
} |
|
52 |
||
53 |
// --------------------------------------------------------------------------- |
|
54 |
// Returns the file server session |
|
55 |
// --------------------------------------------------------------------------- |
|
56 |
// |
|
57 |
EXPORT_C RFs& RadioEngineUtils::FsSession() |
|
58 |
{ |
|
59 |
return CRadioEngineTls::Instance().FsSession(); |
|
60 |
} |