contentstorage/cahandler/tapp/inc/catapphandlerplugin.h
changeset 61 8e5041d13c84
child 66 32469d7d46ff
equal deleted inserted replaced
60:f62f87b200ec 61:8e5041d13c84
       
     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 template app handler plugin
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef CATAPPHANDLERPLUGIN_H
       
    19 #define CATAPPHANDLERPLUGIN_H
       
    20 
       
    21 #include <QObject>
       
    22 #include <qserviceplugininterface.h>
       
    23 #include <qserviceinterfacedescriptor.h>
       
    24 
       
    25 QTM_USE_NAMESPACE
       
    26 
       
    27 class CaTappHandlerPlugin: public QObject, public QServicePluginInterface
       
    28 {
       
    29 Q_OBJECT 
       
    30 Q_INTERFACES(QtMobility::QServicePluginInterface)
       
    31 
       
    32 public:
       
    33     QObject *createInstance(const QServiceInterfaceDescriptor &descriptor,
       
    34         QServiceContext *context, QAbstractSecuritySession *session);
       
    35 };
       
    36 
       
    37 #endif //CATAPPHANDLERPLUGIN_H