ncdengine/provider/deviceinteraction/inc/ncddeviceinteractionfactory.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 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:   Declaration of CNcdDeviceInteractionFactory
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef NCD_DEVICE_INTERACTION_FACTORY_H
       
    20 #define NCD_DEVICE_INTERACTION_FACTORY_H
       
    21 
       
    22 class MNcdInstallationService;
       
    23 class MNcdDeviceService;
       
    24 
       
    25 /**
       
    26  * Device Interaction factory class.
       
    27  */
       
    28 class NcdDeviceInteractionFactory
       
    29     {
       
    30 public: // New functions
       
    31 
       
    32     /**
       
    33      * Create installation service.
       
    34      * @return MNcdInstallationService* Installation service.
       
    35      */
       
    36     IMPORT_C static MNcdInstallationService* CreateInstallationServiceL();
       
    37     
       
    38     /**
       
    39      * Create installation service.
       
    40      * @return MNcdInstallationService* Installation service.
       
    41      */
       
    42     IMPORT_C static MNcdInstallationService* CreateInstallationServiceLC();
       
    43     
       
    44     /**
       
    45      * Create device service.
       
    46      * @return MNcdDeviceService* Device service.
       
    47      */
       
    48     IMPORT_C static MNcdDeviceService* CreateDeviceServiceL();
       
    49     
       
    50     /**
       
    51      * Create device service.
       
    52      * @return MNcdDeviceService* Device service.
       
    53      */
       
    54     IMPORT_C static MNcdDeviceService* CreateDeviceServiceLC();
       
    55     
       
    56     };
       
    57 
       
    58 #endif // NCD_DEVICE_INTERACTION_FACTORY_H