phoneengine/phoneservices/tsrc/shared/mock_ctiurischemeparser.cpp
changeset 46 bc5a64e5bc3c
equal deleted inserted replaced
45:6b911d05207e 46:bc5a64e5bc3c
       
     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 "ctiurischemeparser.h"
       
    20 
       
    21 // ============================ MEMBER FUNCTIONS ===============================
       
    22 
       
    23 // -----------------------------------------------------------------------------
       
    24 // CtiUriSchemeParser::CtiUriSchemeParser
       
    25 // -----------------------------------------------------------------------------
       
    26 //
       
    27 CtiUriSchemeParser::CtiUriSchemeParser( 
       
    28         QObject * parent )
       
    29     :
       
    30     UriSchemeParser(parent)
       
    31     {
       
    32     
       
    33     }
       
    34 
       
    35 
       
    36 // -----------------------------------------------------------------------------
       
    37 // CtiUriSchemeParser::~CtiUriSchemeParser
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40 CtiUriSchemeParser::~CtiUriSchemeParser(  )
       
    41     {
       
    42     
       
    43     }
       
    44 
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // CtiUriSchemeParser::isSupportedUriScheme
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 bool CtiUriSchemeParser::isSupportedUriScheme( 
       
    51         const QString & uri ) const
       
    52     {
       
    53     SMC_MOCK_METHOD1( bool, const QString &, uri )
       
    54     }
       
    55 
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 // CtiUriSchemeParser::parseUri
       
    59 // -----------------------------------------------------------------------------
       
    60 //
       
    61 bool CtiUriSchemeParser::parseUri( 
       
    62         const QString & uri,
       
    63         QString &phoneNumber,
       
    64         QString &dtmfString ) const
       
    65     {
       
    66     SMC_MOCK_METHOD3( bool, 
       
    67         const QString &, uri,
       
    68         QString &, phoneNumber,
       
    69         QString &, dtmfString)
       
    70     }