runtimeproviders/ftudefaultruntimeprovider/inc/ftudefaultruntimeprovider.h
changeset 0 c464cd7e2753
equal deleted inserted replaced
-1:000000000000 0:c464cd7e2753
       
     1 /*
       
     2 * Copyright (c) 2009 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 the FTU default runtime provider.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef FTU_RUNTIMEPROVIDERS_DEFAULTRUNTIMEPROVIDER_H
       
    20 #define FTU_RUNTIMEPROVIDERS_DEFAULTRUNTIMEPROVIDER_H
       
    21 
       
    22 #include <QObject>
       
    23 #include <qserviceplugininterface.h>
       
    24 
       
    25 
       
    26 QTM_USE_NAMESPACE
       
    27 
       
    28 /**
       
    29  * @ingroup group_ftudefaultruntimeprovider
       
    30  * @brief Provides a default implementation of the ftu runtime.
       
    31  *
       
    32  * This provider includes a default implementation of the ftu runtime.
       
    33  * The runtime is described in the ftudefaultruntimeprovider.manifest file.
       
    34  *
       
    35  * @since S60 ?S60_version.
       
    36  */
       
    37 class FtuDefaultRuntimeProvider : public QObject, public QServicePluginInterface
       
    38 {    
       
    39     Q_OBJECT
       
    40     Q_INTERFACES(QtMobility::QServicePluginInterface)
       
    41 public:
       
    42 
       
    43 public:
       
    44     QObject *createInstance(const QServiceInterfaceDescriptor &descriptor,
       
    45                             QServiceContext *context,
       
    46                             QAbstractSecuritySession *session);
       
    47 
       
    48 };
       
    49 
       
    50 #endif //FTU_RUNTIMEPROVIDERS_DEFAULTRUNTIMEPROVIDER_H
       
    51