phonesettings/cpphonesettingsplugins/tsrc/mocks/mock_hbtranslator.cpp
changeset 78 baacf668fe89
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
       
     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 <hbtranslator.h>
       
    20 
       
    21 // ============================ MEMBER FUNCTIONS ===============================
       
    22 
       
    23 // -----------------------------------------------------------------------------
       
    24 // HbTranslator::HbTranslator
       
    25 // -----------------------------------------------------------------------------
       
    26 //
       
    27 HbTranslator::HbTranslator(  ) : d(NULL)
       
    28     {
       
    29     
       
    30     }
       
    31 
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // HbTranslator::HbTranslator
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 HbTranslator::HbTranslator( 
       
    38         const QString & file ) : d(NULL)
       
    39     {
       
    40     
       
    41     }
       
    42 
       
    43 
       
    44 // -----------------------------------------------------------------------------
       
    45 // HbTranslator::HbTranslator
       
    46 // -----------------------------------------------------------------------------
       
    47 //
       
    48 HbTranslator::HbTranslator( 
       
    49         const QString & path,
       
    50         const QString & file ) : d(NULL)
       
    51     {
       
    52     
       
    53     }
       
    54 
       
    55 
       
    56 // -----------------------------------------------------------------------------
       
    57 // HbTranslator::~HbTranslator
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 HbTranslator::~HbTranslator(  )
       
    61     {
       
    62     
       
    63     }
       
    64 
       
    65 
       
    66 // -----------------------------------------------------------------------------
       
    67 // HbTranslator::loadCommon
       
    68 // -----------------------------------------------------------------------------
       
    69 //
       
    70 void HbTranslator::loadCommon(  )
       
    71     {
       
    72     SMC_MOCK_METHOD0( void )
       
    73     }
       
    74 
       
    75