btobexprofiles/obexreceiveservices/mtmuibluetooth/src/btmtmuidll.cpp
branchRCL_3
changeset 56 9386f31cc85b
parent 55 613943a21004
child 61 269724087bed
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
     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 "btmtmuidata.h"
       
    23 #include "btmtmui.h"
       
    24 #include "btmtmuidebug.h"
       
    25 
       
    26 // ================= OTHER EXPORTED FUNCTIONS ==============
       
    27 
       
    28 // ---------------------------------------------------------
       
    29 // NewBtMtmUiL Creates new MTM UI (BT)
       
    30 // Returns: CBaseMtmUi pointer to created mtm
       
    31 // ---------------------------------------------------------
       
    32 //
       
    33 EXPORT_C CBaseMtmUi* NewBtMtmUiL( CBaseMtm& aMtm, CRegisteredMtmDll& aRegisteredDll )
       
    34 	{
       
    35     FLOG( _L( "CBtMtmUi: NewBtMtmUiL\t" ) );
       
    36 	return CBtMtmUi::NewL( aMtm, aRegisteredDll );
       
    37 	}
       
    38 
       
    39 // ---------------------------------------------------------
       
    40 // NewBtMtmUiDataLayerL Creates new MTM UI data layer (BT)
       
    41 // Returns: CBaseMtmUiData pointer to created mtm
       
    42 // ---------------------------------------------------------
       
    43 //
       
    44 EXPORT_C CBaseMtmUiData* NewBtMtmUiDataLayerL( CRegisteredMtmDll& aRegisteredDll )
       
    45 	{
       
    46     FLOG( _L( "CBtMtmUi: NewBtMtmUiDataLayerL\t" ) );
       
    47 	return CBtMtmUiData::NewL( aRegisteredDll );
       
    48 	}
       
    49 
       
    50 // End of File