cpsecplugins/cpadvancedsecplugin/inc/advsecsettingsloader.h
changeset 63 989397f9511c
equal deleted inserted replaced
62:3255e7d5bd67 63:989397f9511c
       
     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:  Advanced security settings plugin loader
       
    15  *
       
    16  */
       
    17 #ifndef	ADVSECSETTINGSLOADER_H
       
    18 #define	ADVSECSETTINGSLOADER_H
       
    19 
       
    20 #include <QObject>
       
    21 #include <cpplugininterface.h>          // CpPluginInterface
       
    22 
       
    23 class HbTranslator;
       
    24 
       
    25 
       
    26 /**
       
    27  * Control panel plugin loader for advanced security settings.
       
    28  */
       
    29 class AdvSecSettingsLoader : public QObject, public CpPluginInterface
       
    30 {
       
    31     Q_OBJECT
       
    32     Q_INTERFACES(CpPluginInterface)
       
    33 
       
    34 public:     // constructor and destructor
       
    35     AdvSecSettingsLoader();
       
    36     ~AdvSecSettingsLoader();
       
    37 
       
    38 public:     // new functions
       
    39     QList<CpSettingFormItemData*> createSettingFormItemData(
       
    40         CpItemDataHelper &itemDataHelper) const;
       
    41 
       
    42 private:    // data
       
    43     HbTranslator* mTranslator;
       
    44 };
       
    45 
       
    46 #endif // ADVSECSETTINGSLOADER_H