omaprovisioning/provisioning/ProvisioningEngine/Inc/WPContextManagerFactory.h
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     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:  WPContextManagerFactory can be used to create a context manager.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef WPCONTEXTMANAGERFACTORY_H
       
    20 #define WPCONTEXTMANAGERFACTORY_H
       
    21 
       
    22 // FORWARD DECLARATIONS
       
    23 class MWPContextManager;
       
    24 
       
    25 //  CLASS DEFINITION
       
    26 
       
    27 /**
       
    28 *  Factory class for context manager.
       
    29 *
       
    30 *  @lib ProvisioningHandler
       
    31 *  @since 2.0
       
    32 */
       
    33 class WPContextManagerFactory 
       
    34     {
       
    35     public:
       
    36         /**
       
    37         * Creates a context manager.
       
    38         * @return Context manager
       
    39         */
       
    40         static MWPContextManager* CreateL();
       
    41 
       
    42         /**
       
    43         * Creates a context manager.
       
    44         * @return Context manager
       
    45         */
       
    46         static MWPContextManager* CreateLC();
       
    47     };
       
    48 
       
    49 #endif /* WPCONTEXTMANAGERFACTORY_H */