phonesettings/cpphonesettingsplugins/tsrc/mocks/mock_cpnetworkplugin.cpp
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 22 6bb1b21d2484
parent 45 6b911d05207e
equal deleted inserted replaced
40:bab96b7ed1a4 51:f39ed5e045e0
    13 *
    13 *
    14 * Description:
    14 * Description:
    15 *
    15 *
    16 */
    16 */
    17 #include <QDebug>
    17 #include <QDebug>
       
    18 #include <smcmockclassincludes.h>
    18 #include "cpnetworkplugin.h"
    19 #include "cpnetworkplugin.h"
    19 #include <cpsettingformitemdata.h>
    20 #include <cpsettingformitemdata.h>
    20 
    21 
    21 // ============================ MEMBER FUNCTIONS ===============================
    22 // ============================ MEMBER FUNCTIONS ===============================
    22 
    23 
    42 
    43 
    43 // -----------------------------------------------------------------------------
    44 // -----------------------------------------------------------------------------
    44 // CpNetworkPlugin::createSettingFormItemData
    45 // CpNetworkPlugin::createSettingFormItemData
    45 // -----------------------------------------------------------------------------
    46 // -----------------------------------------------------------------------------
    46 //
    47 //
    47 QList<CpSettingFormItemData*> CpNetworkPlugin::createSettingFormItemData(
    48 QList <CpSettingFormItemData * > CpNetworkPlugin::createSettingFormItemData( 
    48         CpItemDataHelper &itemDataHelper) const
    49         CpItemDataHelper & itemDataHelper ) const
    49     {
    50     {
    50     Q_UNUSED( itemDataHelper )
    51     Q_UNUSED( itemDataHelper )
    51     return QList<CpSettingFormItemData *> ();
    52     return QList<CpSettingFormItemData *> ();
    52     }
    53     }
       
    54 
       
    55 
       
    56 // -----------------------------------------------------------------------------
       
    57 // CpNetworkPlugin::createSettingView
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 CpBaseSettingView * CpNetworkPlugin::createSettingView( 
       
    61         const QVariant & hint ) const
       
    62     {
       
    63     SMC_MOCK_METHOD1( CpBaseSettingView *, const QVariant &, hint )
       
    64     }
       
    65 
       
    66