clock/clockui/clockplugins/datetimesettingsplugin/inc/datetimesettingsplugin.h
changeset 18 c198609911f9
child 26 a949c2543c15
equal deleted inserted replaced
0:f979ecb2b13e 18:c198609911f9
       
     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: 
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef DATETIMESETTINGSPLUGIN_H_
       
    20 #define DATETIMESETTINGSPLUGIN_H_
       
    21 
       
    22 #include <cppluginplatinterface.h>
       
    23 #include <qobject.h>
       
    24 
       
    25 class DateTimeSettingsPlugin : public QObject, public CpPluginPlatInterface
       
    26 {
       
    27 	Q_OBJECT
       
    28     Q_INTERFACES(CpPluginPlatInterface)
       
    29 
       
    30 public:
       
    31 	DateTimeSettingsPlugin();
       
    32     virtual ~DateTimeSettingsPlugin();
       
    33 
       
    34     virtual int uid() const;
       
    35     virtual CpSettingFormItemData *createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    36 };
       
    37 
       
    38 #endif /* DATETIMESETTINGSPLUGIN_H_ */