tsrc/mocks/orbit/mock_hbstyleloader.cpp
changeset 78 baacf668fe89
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
       
     1 /** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 * All rights reserved.
       
     3 * This component and the accompanying materials are made available
       
     4 * under the terms of the License "Eclipse Public License v1.0"
       
     5 * which accompanies this distribution, and is available
       
     6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 *
       
     8 * Initial Contributors:
       
     9 * Nokia Corporation - initial contribution.
       
    10 *
       
    11 * Contributors:
       
    12 *
       
    13 * Description:
       
    14 *
       
    15 */
       
    16 #include <QDebug>
       
    17 #include <smcmockclassincludes.h>
       
    18 #include <hbstyleloader.h>
       
    19 
       
    20 // ============================ MEMBER FUNCTIONS ===============================
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // HbStyleLoader::registerFilePath
       
    24 // -----------------------------------------------------------------------------
       
    25 //
       
    26 bool HbStyleLoader::registerFilePath( 
       
    27         const QString & filePath )
       
    28     {
       
    29     SMC_MOCK_METHOD1( bool, const QString &, filePath )
       
    30     }
       
    31 
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // HbStyleLoader::unregisterFilePath
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 bool HbStyleLoader::unregisterFilePath( 
       
    38         const QString & filePath )
       
    39     {
       
    40     SMC_MOCK_METHOD1( bool, const QString &, filePath )
       
    41     }
       
    42 
       
    43