File indexing completed on 2024-04-28 03:59:49

0001 /*
0002     SPDX-FileCopyrightText: 2015 Jan Grulich <jgrulich@redhat.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "modemsimple.h"
0008 
0009 ModemSimple::ModemSimple(QObject *parent)
0010     : QDBusAbstractAdaptor(parent)
0011 {
0012 }
0013 
0014 ModemSimple::~ModemSimple()
0015 {
0016 }
0017 
0018 QDBusObjectPath ModemSimple::Connect(const QVariantMap &properties)
0019 {
0020     Q_UNUSED(properties);
0021     // TODO
0022     return QDBusObjectPath();
0023 }
0024 
0025 void ModemSimple::Disconnect(const QDBusObjectPath &bearer)
0026 {
0027     Q_UNUSED(bearer);
0028     // TODO
0029 }
0030 
0031 QVariantMap ModemSimple::GetStatus()
0032 {
0033     // TODO
0034     return QVariantMap();
0035 }
0036 
0037 #include "moc_modemsimple.cpp"