cmmanager/cpdestinationplugin/inc/cpdestinationplugin.h
branchRCL_3
changeset 58 83ca720e2b9a
parent 57 05bc53fe583b
child 62 bb1f80fb7db2
equal deleted inserted replaced
57:05bc53fe583b 58:83ca720e2b9a
     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:  
       
    15 *   Control Panel plugin for showing destinations and access points
       
    16 *   settings.
       
    17 *
       
    18 */
       
    19 
       
    20 #ifndef CPDESTINATIONPLUGIN_H
       
    21 #define CPDESTINATIONPLUGIN_H
       
    22 
       
    23 // System includes
       
    24 #include <QObject>
       
    25 #include <cpplugininterface.h>
       
    26 
       
    27 // User includes
       
    28 
       
    29 // Forward declarations
       
    30 class QTranslator;
       
    31 
       
    32 // External data types
       
    33 
       
    34 // Constants
       
    35 
       
    36 // Class declaration
       
    37 class CpDestinationPlugin : public QObject, public CpPluginInterface
       
    38 {
       
    39     Q_OBJECT
       
    40     Q_INTERFACES(CpPluginInterface)
       
    41     
       
    42 public:
       
    43     CpDestinationPlugin();
       
    44     ~CpDestinationPlugin();
       
    45     QList<CpSettingFormItemData*> createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    46     
       
    47 signals:
       
    48 
       
    49 public slots:
       
    50 
       
    51 protected:
       
    52 
       
    53 protected slots:
       
    54 
       
    55 private:
       
    56 
       
    57 private slots:
       
    58 
       
    59 private: // data
       
    60     //! Translator for localization
       
    61     QTranslator *mTranslator;
       
    62     
       
    63 };
       
    64 
       
    65 #endif // CPDESTINATIONPLUGIN_H