phonesettings/cpphonesettingsplugins/tsrc/mocks/mock_psetcliwrapper.cpp
changeset 36 2eacb6118286
parent 30 ebdbd102c78a
child 37 ba76fc04e6c2
equal deleted inserted replaced
30:ebdbd102c78a 36:2eacb6118286
     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 "psetcliwrapper.h"
       
    20 #include "psetcliwrapper_p.h"
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // PSetCliWrapper::PSetCliWrapper
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 PSetCliWrapper::PSetCliWrapper( 
       
    29         CPsetContainer & psetContainer,
       
    30         QObject * parent ) : QObject( parent )
       
    31     {
       
    32     Q_UNUSED(psetContainer);
       
    33     }
       
    34 
       
    35 
       
    36 // -----------------------------------------------------------------------------
       
    37 // PSetCliWrapper::~PSetCliWrapper
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40 PSetCliWrapper::~PSetCliWrapper(  )
       
    41     {
       
    42 
       
    43     }
       
    44 
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // PSetCliWrapper::getColpMode
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 void PSetCliWrapper::getColpMode(  )
       
    51     {
       
    52     SMC_MOCK_METHOD0( void )
       
    53     }
       
    54 
       
    55 
       
    56 // -----------------------------------------------------------------------------
       
    57 // PSetCliWrapper::getClipMode
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 void PSetCliWrapper::getClipMode(  )
       
    61     {
       
    62     SMC_MOCK_METHOD0( void )
       
    63     }
       
    64 
       
    65 
       
    66 // -----------------------------------------------------------------------------
       
    67 // PSetCliWrapper::getClirMode
       
    68 // -----------------------------------------------------------------------------
       
    69 //
       
    70 void PSetCliWrapper::getClirMode(  )
       
    71     {
       
    72     SMC_MOCK_METHOD0( void )
       
    73     }
       
    74 
       
    75 
       
    76 // -----------------------------------------------------------------------------
       
    77 // PSetCliWrapper::getColrMode
       
    78 // -----------------------------------------------------------------------------
       
    79 //
       
    80 void PSetCliWrapper::getColrMode(  )
       
    81     {
       
    82     SMC_MOCK_METHOD0( void )
       
    83     }
       
    84 
       
    85 
       
    86 // -----------------------------------------------------------------------------
       
    87 // PSetCliWrapper::getCnap
       
    88 // -----------------------------------------------------------------------------
       
    89 //
       
    90 void PSetCliWrapper::getCnap(  )
       
    91     {
       
    92     SMC_MOCK_METHOD0( void )
       
    93     }
       
    94 
       
    95 
       
    96 // -----------------------------------------------------------------------------
       
    97 // PSetCliWrapper::cancelAll
       
    98 // -----------------------------------------------------------------------------
       
    99 //
       
   100 void PSetCliWrapper::cancelAll(  )
       
   101     {
       
   102     SMC_MOCK_METHOD0( void )
       
   103     }
       
   104 
       
   105