homescreenapp/examples/localisedhellowidgetplugin/inc/localisedhellowidgetplugin.h
changeset 51 4785f57bf3d4
equal deleted inserted replaced
46:23b5d6a29cce 51:4785f57bf3d4
       
     1 /*
       
     2 * Copyright (c) 2010 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:  Example of localised home screen widget
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef LOCALISEDHELLOWIDGETPLUGIN_H
       
    19 #define LOCALISEDHELLOWIDGETPLUGIN_H
       
    20 
       
    21 #include <QObject>
       
    22 #include <qserviceplugininterface.h>
       
    23 
       
    24 QTM_USE_NAMESPACE
       
    25 class LocalisedHelloWidgetPlugin : public QObject, public QServicePluginInterface
       
    26 {
       
    27     Q_OBJECT
       
    28     Q_INTERFACES(QtMobility::QServicePluginInterface)
       
    29 
       
    30 public:
       
    31     QObject *createInstance(const QServiceInterfaceDescriptor &descriptor,
       
    32                             QServiceContext *context,
       
    33                             QAbstractSecuritySession *session);
       
    34 };
       
    35 
       
    36 #endif // LOCALISEDHELLOWIDGETPLUGIN_H