Qt Contacts C++ Classes

The QtContacts module contains classes for management. More...

Detailed Description

The Qt Contacts C++ classes provide contact management. A contact is the digital representation of a person, group, or entity that is stored in a platform-specific manner.

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

 #include <QtContacts>

To use the C++ library in your application, add the following to your CMakeLists.txt file:

 find_package(Qt6 REQUIRED COMPONENTS Contacts)
 target_link_libraries(mytarget PRIVATE Qt6::Contacts)