securitysettings/qtconfigutils/eapqtplugininfo/src/eapqtplugininfo.cpp
changeset 39 fe6b6762fccd
parent 33 938269283a16
equal deleted inserted replaced
38:7a0216d033ac 39:fe6b6762fccd
     1 /*
     1 /*
     2  * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     2  * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3  * All rights reserved.
     3  * All rights reserved.
     4  * This component and the accompanying materials are made available
     4  * This component and the accompanying materials are made available
     5  * under the terms of the License "Eclipse Public License v1.0"
     5  * under the terms of "Eclipse Public License v1.0"
     6  * which accompanies this distribution, and is available
     6  * which accompanies this distribution, and is available
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8  *
     8  *
     9  * Initial Contributors:
     9  * Initial Contributors:
    10  * Nokia Corporation - initial contribution.
    10  * Nokia Corporation - initial contribution.
    11  *
    11  *
    12  * Contributors:
    12  * Contributors:
    13  *
    13  *
    14  * Description: 
    14  * Description: 
    15  *   Control Panel EAP plug-in information
    15  *   EAP plugin information
    16  *
    16  *
    17  */
    17  */
    18 
    18 
    19 /*
    19 /*
    20  * %version: 5 %
    20  * %version: 6 %
    21  */
    21  */
    22 
    22 
       
    23 // System includes
    23 #include <QList>
    24 #include <QList>
    24 #include <QVariant>
    25 #include <QVariant>
    25 
       
    26 #include <eapqtpluginhandle.h>
    26 #include <eapqtpluginhandle.h>
    27 #include <eapqtplugininfo.h>
    27 #include <eapqtplugininfo.h>
    28 
    28 
       
    29 // User includes
    29 #include "eapqtplugininfo_p.h"
    30 #include "eapqtplugininfo_p.h"
    30 
    31 
    31 //----------------------------------------------------------------------------
    32 /*!
    32 //              EapQtPluginInfo
    33  *  \class EapQtPluginInfo
    33 //----------------------------------------------------------------------------
    34  *  \brief Public implementation of EAP plugin information
       
    35  */
    34 
    36 
    35 EapQtPluginInfo::EapQtPluginInfo(EapQtPluginHandle id, QString locId, int orderNumber) :
    37 // External function prototypes
       
    38 
       
    39 // Local constants
       
    40 
       
    41 // ======== LOCAL FUNCTIONS ========
       
    42 
       
    43 // ======== MEMBER FUNCTIONS ========
       
    44 
       
    45 EapQtPluginInfo::EapQtPluginInfo(const EapQtPluginHandle &id, const QString &locId,
       
    46     const int orderNumber) :
    36     d_ptr(new EapQtPluginInfoPrivate(id, locId, orderNumber))
    47     d_ptr(new EapQtPluginInfoPrivate(id, locId, orderNumber))
    37 {
    48 {
    38 }
    49 }
    39 
    50 
    40 EapQtPluginInfo::EapQtPluginInfo(const EapQtPluginInfo & info) :
    51 EapQtPluginInfo::EapQtPluginInfo(const EapQtPluginInfo &info) :
    41     d_ptr(
    52     d_ptr(
    42         new EapQtPluginInfoPrivate(info.pluginHandle(), info.localizationId(), info.orderNumber()))
    53         new EapQtPluginInfoPrivate(info.pluginHandle(), info.localizationId(), info.orderNumber()))
    43 {
    54 {
    44 }
    55 }
    45 
    56