calendarui/calenplugins/calensettingsplugin/inc/calensettingsplugin.h
changeset 45 b6db4fd4947b
parent 23 fd30d51f876b
child 46 ecd7b9840282
equal deleted inserted replaced
23:fd30d51f876b 45:b6db4fd4947b
     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 CalenSettingsPlugin_H_
       
    20 #define CalenSettingsPlugin_H_
       
    21 
       
    22 #include <cppluginplatinterface.h>
       
    23 #include <qobject.h>
       
    24 
       
    25 class CpItemDataHelper;
       
    26 
       
    27 class CalenSettingsPlugin : public QObject, public CpPluginPlatInterface
       
    28 {
       
    29 	Q_OBJECT
       
    30     Q_INTERFACES(CpPluginPlatInterface)
       
    31 
       
    32 public:
       
    33 	CalenSettingsPlugin();
       
    34     virtual ~CalenSettingsPlugin();
       
    35 
       
    36     virtual int uid() const;
       
    37     virtual CpSettingFormItemData *createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    38 };
       
    39 
       
    40 #endif /* CalenSettingsPlugin_H_ */