File indexing completed on 2024-04-28 16:42:54

0001 // SPDX-FileCopyrightText: 2021 Alexey Andreyev <aa13q@ya.ru>
0002 //
0003 // SPDX-License-Identifier: LicenseRef-KDE-Accepted-GPL
0004 
0005 #include "ussd-utils.h"
0006 
0007 UssdUtils::UssdUtils(QObject *parent)
0008     : QObject(parent)
0009 {
0010 }
0011 
0012 void UssdUtils::initiate(const QString &deviceUni, const QString &command)
0013 {
0014     Q_EMIT initiated(deviceUni, command);
0015 }
0016 
0017 void UssdUtils::respond(const QString &deviceUni, const QString &reply)
0018 {
0019     Q_EMIT responded(deviceUni, reply);
0020 }
0021 
0022 void UssdUtils::cancel(const QString &deviceUni)
0023 {
0024     Q_EMIT cancelled(deviceUni);
0025 }