SolidModules
networkgsminterface.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "networkgsminterface.h"
00022
00023 #include <KDebug>
00024
00025 #include "networkgsminterface_p.h"
00026 #include "manager.h"
00027
00028 NMGsmNetworkInterfacePrivate::NMGsmNetworkInterfacePrivate(const QString & path, QObject * owner)
00029 : NMSerialNetworkInterfacePrivate(path, owner), gsmIface(NMNetworkManager::DBUS_SERVICE, path, QDBusConnection::systemBus())
00030 {
00031 }
00032
00033 NMGsmNetworkInterface::NMGsmNetworkInterface(const QString & path, NMNetworkManager * manager, QObject * parent)
00034 : NMSerialNetworkInterface(*new NMGsmNetworkInterfacePrivate(path, this), manager, parent)
00035 {
00036 Q_D(NMGsmNetworkInterface);
00037 connect( &d->gsmIface, SIGNAL(PropertiesChanged(const QVariantMap &)),
00038 this, SLOT(gsmPropertiesChanged(const QVariantMap &)));
00039 }
00040
00041 NMGsmNetworkInterface::~NMGsmNetworkInterface()
00042 {
00043
00044 }
00045
00046 void NMGsmNetworkInterface::gsmPropertiesChanged(const QVariantMap & changedProperties)
00047 {
00048 kDebug(1441) << changedProperties.keys();
00049 }
00050
00051 #include "networkgsminterface.moc"
00052
00053