videocollection/tsrc/stubs/inc/xqserviceproviderstub.h
branchRCL_3
changeset 56 839377eedc2b
equal deleted inserted replaced
54:315810614048 56:839377eedc2b
       
     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:   stub
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef XQSERVICEABSTRACTSERVICESTUB_H
       
    19 #define XQSERVICEABSTRACTSERVICESTUB_H
       
    20 
       
    21 #define XQ_EXPORT_PLUGIN2(x,y)
       
    22 
       
    23 #include <qobject.h>
       
    24 #include <qstring.h>
       
    25 #include <QVariant>
       
    26 
       
    27 class XQServiceProvider : public QObject
       
    28 {
       
    29     Q_OBJECT
       
    30     
       
    31 public:
       
    32     XQServiceProvider( const QString& service, QObject *parent = 0 );
       
    33     ~XQServiceProvider();
       
    34 
       
    35     //    void SetPlugin(QObject* impl_plugin);
       
    36 
       
    37 //Q_SIGNALS:
       
    38     //void returnValueDelivered() ;
       
    39     //void clientDisconnected() ;
       
    40        
       
    41 private:
       
    42 };
       
    43 
       
    44 #endif