homescreenapp/stateplugins/hsapplibrarystateplugin/src/hsapplibrarystateplugin.cpp
changeset 35 f9ce957a272c
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: Application library state plugin.
       
    15  *
       
    16  */
       
    17 
       
    18 
       
    19 #include <qserviceinterfacedescriptor.h>
       
    20 #include <qabstractsecuritysession.h>
       
    21 #include <qservicecontext.h>
       
    22 
       
    23 #include "hsapplibrarystateplugin.h"
       
    24 #include "hsapplibrarystate.h"
       
    25 
       
    26 #ifdef COVERAGE_MEASUREMENT
       
    27 #pragma CTC SKIP
       
    28 #endif //COVERAGE_MEASUREMENT
       
    29 
       
    30 /*!
       
    31     Creates a HsAppLibraryState if interface name in \a descriptor
       
    32 	is com.nokia.homescreen.state.HsAppLibraryState.
       
    33 */
       
    34 QObject *HsMenuAppLibraryStatePlugin::createInstance(const QServiceInterfaceDescriptor &descriptor,
       
    35         QServiceContext *context,
       
    36         QAbstractSecuritySession *session)
       
    37 {
       
    38     Q_UNUSED(context);
       
    39     Q_UNUSED(session);
       
    40 
       
    41     if (descriptor.interfaceName() == QLatin1String("com.nokia.homescreen.state.HsAppLibraryState")) {
       
    42         return new HsAppLibraryState();
       
    43     } else {
       
    44         return 0;
       
    45     }
       
    46 }
       
    47 
       
    48 Q_EXPORT_PLUGIN2(hsapplibrarystateplugin, HsMenuAppLibraryStatePlugin)
       
    49 
       
    50 #ifdef COVERAGE_MEASUREMENT
       
    51 #pragma CTC ENDSKIP
       
    52 #endif //COVERAGE_MEASUREMENT