controlpanelplugins/aboutplugin/src/cpaboutplugin.h
changeset 40 593f946f4fec
equal deleted inserted replaced
22:a5692c68d772 40:593f946f4fec
       
     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 #ifndef	CPABOUTPLUGIN_H
       
    18 #define	CPABOUTPLUGIN_H
       
    19 
       
    20 #include <qobject.h>
       
    21 #include <cpplugininterface.h>
       
    22 
       
    23 #include "cpabout_global.h"
       
    24 
       
    25 class CpAboutPlugin : public QObject, public CpPluginInterface
       
    26 {
       
    27     Q_OBJECT
       
    28     Q_INTERFACES(CpPluginInterface)
       
    29     
       
    30 public:
       
    31     CpAboutPlugin();
       
    32     virtual ~CpAboutPlugin();
       
    33     virtual QList<CpSettingFormItemData*> createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    34         
       
    35     ABOUT_TEST_FRIEND_CLASS(TestAboutPlugin)
       
    36 };
       
    37 
       
    38 #endif //CPABOUTPLUGIN_H