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