diff -r 73a1feb507fb -r bc78a40cd63c mmsharing/livecommsui/lcuiengine/tsrc/ut_lcuieng/hbstubs/qthighway_stub.cpp --- a/mmsharing/livecommsui/lcuiengine/tsrc/ut_lcuieng/hbstubs/qthighway_stub.cpp Tue Aug 31 15:12:07 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,139 +0,0 @@ -/* -* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - -#include -#include -#include -#include -#include "qthighway_stub_helper.h" - -QString qtHighwayStubService; -QString qtHighwayStubMessage; -bool qtHighwayStubIsBg; - - -// ----------------------------------------------------------------------------- -// -// ----------------------------------------------------------------------------- -// - -void QtHighwayStubHelper::reset() -{ - qtHighwayStubService.clear(); - qtHighwayStubMessage.clear(); - qtHighwayStubIsBg = false; -} - -QString QtHighwayStubHelper::service() -{ - return qtHighwayStubService; -} - -QString QtHighwayStubHelper::message() -{ - return qtHighwayStubMessage; -} - -bool QtHighwayStubHelper::isAtBg() -{ - return qtHighwayStubIsBg; -} - -// ----------------------------------------------------------------------------- -// -// ----------------------------------------------------------------------------- -// -XQServiceProvider::XQServiceProvider( const QString& service, QObject *parent ) -{ - Q_UNUSED(service); - Q_UNUSED(parent); -} - -XQServiceProvider::~XQServiceProvider() -{ - -} - -void XQServiceProvider::SetPlugin(QObject* impl_plugin) -{ - Q_UNUSED(impl_plugin); -} - -void XQServiceProvider::publishAll() -{ - -} - -int XQServiceProvider::setCurrentRequestAsync() -{ - return 0; -} - -bool XQServiceProvider::completeRequest(int index, const QVariant& retValue) -{ - Q_UNUSED(index); - Q_UNUSED(retValue); - return true; -} - - -// ----------------------------------------------------------------------------- -// -// ----------------------------------------------------------------------------- -// -XQServiceRequest::XQServiceRequest( - const QString& service, const QString& message, const bool& synchronous) -{ - qtHighwayStubService = service; - qtHighwayStubMessage = message; -} - -XQServiceRequest::~XQServiceRequest() -{ - -} - - -void XQServiceRequest::setArguments(const QList &arguments) -{ - Q_UNUSED(arguments) -} - -QString XQServiceRequest::service() const -{ - return qtHighwayStubService; -} - -QString XQServiceRequest::message() const -{ - return qtHighwayStubMessage; -} - -bool XQServiceRequest::send(QVariant& retValue) -{ - Q_UNUSED(retValue); - return true; -} -void XQServiceRequest::addArg(const QVariant& v) -{ - Q_UNUSED(v); -} - -void XQServiceUtil::toBackground(bool value) -{ - qtHighwayStubIsBg = value; -}