cpsecplugins/simpincodeplugin/inc/cppincodeplugin.h
changeset 19 098e361762d2
equal deleted inserted replaced
17:8957df7b0072 19:098e361762d2
       
     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  *
       
    16  */
       
    17 
       
    18 #ifndef CPPINCODEPLUGIN_H
       
    19 #define CPPINCODEPLUGIN_H
       
    20 
       
    21 // System includes
       
    22 #include <QObject>
       
    23 
       
    24 // User includes
       
    25 #include <cpplugininterface.h>
       
    26 
       
    27 // Class declaration
       
    28 class CpPinCodePlugin : public QObject, public CpPluginInterface
       
    29 {
       
    30     Q_OBJECT
       
    31     Q_INTERFACES(CpPluginInterface)
       
    32     
       
    33 public:    
       
    34     CpPinCodePlugin();
       
    35     virtual ~CpPinCodePlugin();
       
    36     virtual QList<CpSettingFormItemData *> createSettingFormItemData(
       
    37         CpItemDataHelper &itemDataHelper) const;
       
    38 };
       
    39 
       
    40 #endif //CPPINCODEPLUGIN_H