vmbx/vmbxengine/tsrc/ut_vmbxengine/src/qtuihandler_mock.cpp
changeset 27 7eb70891911c
parent 19 e44a8c097b15
equal deleted inserted replaced
23:427125ac6cb8 27:7eb70891911c
     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 <QtTest/QtTest>
     1 #include <QtTest/QtTest>
    18 #include "vmbxqtuihandler.h"
     2 #include "vmbxqtuihandler.h"
    19 
     3 
    20 VmbxQtUiHandler::VmbxQtUiHandler(QObject* parent): QObject(parent)
     4 VmbxQtUiHandler::VmbxQtUiHandler(QObject* parent): QObject(parent)
    21 {
     5 {
    54             TVoiceMailboxParams &/*params*/, int &/*result*/ )
    38             TVoiceMailboxParams &/*params*/, int &/*result*/ )
    55 {
    39 {
    56     qDebug("mock showCallSelectionDialogL");  
    40     qDebug("mock showCallSelectionDialogL");  
    57 }
    41 }
    58 
    42 
       
    43 void VmbxQtUiHandler::updatePrimaryAction(const QString &/*aInput*/)
       
    44 {
       
    45 	qDebug("mock updatePrimaryAction");  
       
    46 }
       
    47 
       
    48 bool VmbxQtUiHandler::isQtEnvSupported()
       
    49 {
       
    50 	qDebug("mock isQtEnvSupported");
       
    51 	return true;
       
    52 }
       
    53 
       
    54 void  VmbxQtUiHandler::init()
       
    55 {
       
    56 	qDebug("mock init");
       
    57 }
       
    58 
    59 //End of file
    59 //End of file