utilityapps/creator/engine/src/creator_factory.cpp
changeset 55 2d9cac8919d3
parent 31 e7a04a6385be
equal deleted inserted replaced
53:819e59dfc032 55:2d9cac8919d3
       
     1 /*
       
     2 * Copyright (c) 2010 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 
       
    19 #include "engine.h"
       
    20 #include "creator_factory.h"
       
    21 
       
    22 //#include "creator_accesspoint.h"
       
    23 #include "creator_phonebook.h"
       
    24 
       
    25 CCreatorPhonebookBase* TCreatorFactory::CreatePhoneBookL(CCreatorEngine* aEngine)
       
    26 {
       
    27     return CCreatorPhonebook::NewL(aEngine);    
       
    28 }
       
    29 
       
    30 CCreatorModuleBaseParameters* TCreatorFactory::CreatePhoneBookParametersL()
       
    31 	{
       
    32 	return new(ELeave) CPhonebookParameters;
       
    33 	}
       
    34 /*
       
    35 CCreatorConnectionSettingsBase* TCreatorFactory::CreateConnectionSettingsL(CCreatorEngine* aEngine)
       
    36 {
       
    37     return CCreatorAccessPoints::NewL(aEngine); 
       
    38 }
       
    39 
       
    40 CCreatorModuleBaseParameters* TCreatorFactory::CreateConnectionSettingsParametersL()
       
    41     {
       
    42     return new(ELeave) CAccessPointsParameters;
       
    43     }
       
    44 */