deviceupdatesui/deviceupdatesplugin/inc/deviceupdatesplugin.h
changeset 18 7d11f9a6646f
child 27 516a867811c3
equal deleted inserted replaced
4:75a71fdb4c92 18:7d11f9a6646f
       
     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:  Device updates plug-in for control panel
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef DEVICEUPDATESPLUGIN_H_
       
    20 #define DEVICEUPDATESPLUGIN_H_
       
    21 
       
    22 #include <cppluginplatinterface.h>
       
    23 #include <qobject.h>
       
    24 
       
    25 
       
    26 class CpItemDataHelper;
       
    27 
       
    28 class DeviceUpdatesPlugin : public QObject, public CpPluginPlatInterface
       
    29 {
       
    30 	Q_OBJECT
       
    31   Q_INTERFACES(CpPluginPlatInterface)
       
    32 
       
    33 public:
       
    34 		DeviceUpdatesPlugin();
       
    35 
       
    36     virtual ~DeviceUpdatesPlugin();
       
    37 
       
    38     virtual int uid() const;
       
    39     virtual CpSettingFormItemData *createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    40 };
       
    41 
       
    42 #endif /* DEVICEUPDATESPLUGIN_H_ */