32
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 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 |
* DLL interface
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
// INCLUDE FILES
|
|
21 |
|
|
22 |
#include "irmtmuidata.h"
|
|
23 |
#include "irmtmui.h"
|
|
24 |
#include "debug.h"
|
|
25 |
|
|
26 |
// ================= OTHER EXPORTED FUNCTIONS ==============
|
|
27 |
|
|
28 |
//
|
|
29 |
// ---------------------------------------------------------
|
|
30 |
// NewMtmUiL Creates new MTM UI
|
|
31 |
// Returns: CBaseMtmUi pointer to created mtm
|
|
32 |
//
|
|
33 |
EXPORT_C CBaseMtmUi* NewMtmUiL( CBaseMtm& aMtm, CRegisteredMtmDll& aRegisteredDll )
|
|
34 |
{
|
|
35 |
FLOG( _L( "CBaseMtmUi* NewMtmUiL\t" ));
|
|
36 |
return CIrMtmUi::NewL( aMtm, aRegisteredDll );
|
|
37 |
}
|
|
38 |
|
|
39 |
//
|
|
40 |
// ---------------------------------------------------------
|
|
41 |
// NewMtmUiL Creates new MTM UI Data layer
|
|
42 |
// Returns: CBaseMtmUiData pointer to created mtm
|
|
43 |
//
|
|
44 |
EXPORT_C CBaseMtmUiData* NewMtmUiDataLayerL( CRegisteredMtmDll& aRegisteredDll )
|
|
45 |
{
|
|
46 |
FLOG( _L( "CBaseMtmUiData* NewMtmUiDataLayerL\t" ));
|
|
47 |
return CIrMtmUiData::NewL( aRegisteredDll );
|
|
48 |
}
|
|
49 |
|
|
50 |
// End of File
|