Files
NetworkManager/examples/C/qt/list-connections.cpp
Thomas Haller 88071abb43 all: unify comment style for SPDX-License-Identifier tag
Our coding style recommends C style comments (/* */) instead of C++
(//). Also, systemd (which we partly fork) uses C style comments for
the SPDX-License-Identifier.

Unify the style.

  $ sed -i '1 s#// SPDX-License-Identifier: \([^ ]\+\)$#/* SPDX-License-Identifier: \1 */#' -- $(git ls-files -- '*.[hc]' '*.[hc]pp')
2020-09-29 16:50:53 +02:00

37 lines
968 B
C++

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (C) 2011 Eckhart Wörner
*/
/*
* The example shows how to call the ListConnections() D-Bus method to retrieve
* the list of all network configuration that NetworkManager knows about.
*/
#include <QtDBus/QDBusConnection>
#include <QtDBus/QDBusInterface>
#include <QtDBus/QDBusReply>
#include <QtCore/QDebug>
#include <nm-dbus-interface.h>
void listConnections(QDBusInterface& interface) {
// Call ListConnections D-Bus method
QDBusReply<QList<QDBusObjectPath> > result = interface.call("ListConnections");
foreach (const QDBusObjectPath& connection, result.value()) {
qDebug() << connection.path();
}
}
int main() {
// Create a D-Bus proxy; NM_DBUS_* defined in NetworkManager.h
QDBusInterface interface(
NM_DBUS_SERVICE,
NM_DBUS_PATH_SETTINGS,
NM_DBUS_INTERFACE_SETTINGS,
QDBusConnection::systemBus());
listConnections(interface);
}