homescreenapp/runtimeplugins/hsdefaultruntimeplugin/src/hsdefaultruntimeplugin.cpp
changeset 35 f9ce957a272c
child 36 cdae8c6c3876
equal deleted inserted replaced
5:c743ef5928ba 35:f9ce957a272c
       
     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:  Default runtime plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 #include <qserviceinterfacedescriptor.h>
       
    19 #include <qabstractsecuritysession.h>
       
    20 #include <qservicecontext.h>
       
    21 
       
    22 #include "hsdefaultruntimeplugin.h"
       
    23 #include "hsdefaultruntime.h"
       
    24 
       
    25 #ifdef COVERAGE_MEASUREMENT
       
    26 #pragma CTC SKIP
       
    27 #endif //COVERAGE_MEASUREMENT
       
    28 
       
    29 QObject *HsDefaultRuntimePlugin::createInstance(const QServiceInterfaceDescriptor &descriptor,
       
    30                                                 QServiceContext *context,
       
    31                                                 QAbstractSecuritySession *session)
       
    32 {
       
    33     Q_UNUSED(context);
       
    34     Q_UNUSED(session);
       
    35 
       
    36     if (descriptor.interfaceName() == QLatin1String("com.nokia.homescreen.runtime.HsRuntime")) {
       
    37         return new HsDefaultRuntime(this);
       
    38     } else {
       
    39         return 0;
       
    40     }
       
    41 }
       
    42 
       
    43 Q_EXPORT_PLUGIN2(hsdefaultruntimeplugin, HsDefaultRuntimePlugin)
       
    44 
       
    45 #ifdef COVERAGE_MEASUREMENT
       
    46 #pragma CTC ENDSKIP
       
    47 #endif //COVERAGE_MEASUREMENT