remotemgmt_plat/oma_provisioning_engine_api/inc/WPPhoneFactory.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 11 Jun 2010 14:27:59 +0300
changeset 35 0deca9b72b62
permissions -rw-r--r--
Revision: 201021 Kit: 2010123

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  WPPhoneFactory can be used to create phone interface.
*
*/


#ifndef WPPHONEFACTORY_H
#define WPPHONEFACTORY_H

// FORWARD DECLARATIONS
class MWPPhone;

//  CLASS DEFINITION

/**
*  Factory class for phone interface.
*
*  @lib ProvisioningEngine
*  @since 2.0
*/
class WPPhoneFactory 
    {
    public:
        /**
        * Creates all adapters and stores them in an array.
        * @return Array of adapters. Ownership is transferred.
        */
        IMPORT_C static MWPPhone* CreateL();

        /**
        * Creates all adapters and stores them in an array.
        * @return Array of adapters. Ownership is transferred.
        */
        IMPORT_C static MWPPhone* CreateLC();
    };

#endif /* WPPHONEFACTORY_H*/