phoneengine/phonemodel/src/phoneengineproxy.cpp
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2006-2006 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:  Contain GSM specific implementation of CPEPhoneModeL::CreateL
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "cpephonemodelif.h"
       
    20 #include "cpephonemodel.h"
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 // Returns the pointer of the CPEPhoneModel object.
       
    24 // ---------------------------------------------------------------------------
       
    25 //
       
    26 EXPORT_C CPEPhoneModelIF* CPEPhoneModelIF::CreateL( MEngineMonitor& aEngineMonitor )
       
    27     {
       
    28     return CPEPhoneModel::NewL( aEngineMonitor );
       
    29     }
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // Returns the pointer of the CPEPhoneModel object.
       
    33 // ---------------------------------------------------------------------------
       
    34 //
       
    35 EXPORT_C CPEPhoneModelIF* CPEPhoneModelIF::CreateL( 
       
    36     MEngineMonitor& aEngineMonitor,
       
    37     CPEAudioFactory& aAudioFactory )
       
    38     {
       
    39     return CPEPhoneModel::NewL( aEngineMonitor, aAudioFactory );
       
    40     }
       
    41 
       
    42 // End of File