phonesettings/cpphonesettingsplugins/tsrc/mocks/mock_psetcallwaitingwrapper.cpp
branchRCL_3
changeset 61 41a7f70b3818
equal deleted inserted replaced
58:40a3f856b14d 61:41a7f70b3818
       
     1 /* 
       
     2 * Copyright (c) 2009 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 #include <QDebug>
       
    18 #include <smcmockclassincludes.h>
       
    19 #include "psetcallwaitingwrapper.h"
       
    20 
       
    21 class PSetCallWaitingWrapperPrivate {
       
    22 public:
       
    23     PSetCallWaitingWrapperPrivate() {}
       
    24     ~PSetCallWaitingWrapperPrivate() {}
       
    25 };
       
    26 
       
    27 // ============================ MEMBER FUNCTIONS ===============================
       
    28 
       
    29 // -----------------------------------------------------------------------------
       
    30 // PSetCallWaitingWrapper::PSetCallWaitingWrapper
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 PSetCallWaitingWrapper::PSetCallWaitingWrapper( 
       
    34         CPsetContainer & psetContainer,
       
    35         QObject * parent ) : QObject( parent )
       
    36     {
       
    37     Q_UNUSED(psetContainer);
       
    38     }
       
    39 
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // PSetCallWaitingWrapper::~PSetCallWaitingWrapper
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 PSetCallWaitingWrapper::~PSetCallWaitingWrapper(  )
       
    46     {
       
    47 
       
    48     }
       
    49 
       
    50 
       
    51 // -----------------------------------------------------------------------------
       
    52 // PSetCallWaitingWrapper::setCallWaiting
       
    53 // -----------------------------------------------------------------------------
       
    54 //
       
    55 void PSetCallWaitingWrapper::setCallWaiting( 
       
    56         PsCallWaitingCommand aSetting,
       
    57         int aBasicServiceGroup )
       
    58     {
       
    59     SMC_MOCK_METHOD2( void, PsCallWaitingCommand, aSetting, 
       
    60         int, aBasicServiceGroup )
       
    61     }
       
    62 
       
    63 
       
    64 // -----------------------------------------------------------------------------
       
    65 // PSetCallWaitingWrapper::getCallWaitingStatus
       
    66 // -----------------------------------------------------------------------------
       
    67 //
       
    68 void PSetCallWaitingWrapper::getCallWaitingStatus(  )
       
    69     {
       
    70     SMC_MOCK_METHOD0( void )
       
    71     }
       
    72 
       
    73 
       
    74 // -----------------------------------------------------------------------------
       
    75 // PSetCallWaitingWrapper::cancelProcess
       
    76 // -----------------------------------------------------------------------------
       
    77 //
       
    78 void PSetCallWaitingWrapper::cancelProcess(  )
       
    79     {
       
    80     SMC_MOCK_METHOD0( void )
       
    81     }