Qt NFC C++ Classes
An API for accessing NFC Forum Tags. More...
Classes
Filter for matching NDEF messages | |
QNdefFilter::Record struct contains the information about a filter record | |
NFC NDEF message | |
NFC MIME record to hold an icon | |
NFC RTD-SmartPoster | |
NFC RTD-Text | |
NFC RTD-URI | |
NFC NDEF record | |
Access to notifications for NFC events | |
Interface for communicating with a target device | |
A request id handle |
Detailed Description
The Qt NFC C++ API enables an application to access NFC Forum Tags.
Using the Module
Using a Qt module requires linking against the module library, either directly or through other dependencies. Several build tools have dedicated support for this, including CMake and qmake.
Building with CMake
Use the find_package()
command to locate the needed module components in the Qt6
package:
find_package(Qt6 REQUIRED COMPONENTS Nfc) target_link_libraries(mytarget PRIVATE Qt::Nfc)
Building with qmake
To configure the module for building with qmake, add the module as a value of the QT
variable in the project's .pro file:
QT += nfc
© 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.