Qt Device Utilities 6.7.1

Qt Device Utilities provides functionality that is useful for controlling settings in embedded applications. Qt Device Utilities provides the following C++ modules:

Qt Network Settings C++ Classes

Provides functionality for controlling network settings.

Qt Device Utilities provides the following QML modules:

Qt Network Settings QML Types

Provides singleton QML types for controlling network settings.

Getting Started

To include the definitions of the module's class, use the following directive:

#include <QtNetworkSettings>

Building with CMake

If you're using CMake to build your application, add the following lines to your CMakeLists.txt file:

find_package(Qt6 COMPONENTS NetworkSettings REQUIRED)
target_link_libraries(mytarget Qt6::NetworkSettings)

To import the QML types into your application, use the following import statements in your .qml file:

import QtDeviceUtilities.NetworkSettings

Examples

Reference

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.