homescreenapp/hsapplication/inc/hshomescreenclientserviceprovider.h
changeset 36 cdae8c6c3876
child 39 4e8ebe173323
equal deleted inserted replaced
35:f9ce957a272c 36:cdae8c6c3876
       
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef HSHOMESCREENCLIENTSERVICEPROVIDER_H
       
    19 #define HSHOMESCREENCLIENTSERVICEPROVIDER_H
       
    20 
       
    21 #include <xqserviceprovider.h>
       
    22 #include <QVariant>
       
    23 
       
    24 class HsHomeScreenClientServiceProvider : public XQServiceProvider
       
    25 {
       
    26     Q_OBJECT
       
    27 public:
       
    28     HsHomeScreenClientServiceProvider( QObject *parent = 0 );
       
    29     ~HsHomeScreenClientServiceProvider();
       
    30 
       
    31     
       
    32 public slots:
       
    33     bool addWidget(const QString &uri,const QVariantHash &preferences);
       
    34     
       
    35 private:
       
    36     
       
    37 };
       
    38 
       
    39 #endif