Qt IVI Generator Addressbook Example

/**************************************************************************** ** Generated from 'Example.IVI.AddressBook.qface' ** ** Created by: The QFace generator (QtAS 5.12.8) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/
#ifndef ADDRESSBOOKMODULEFACTORY_H_ #define ADDRESSBOOKMODULEFACTORY_H_ #include "addressbookmodule.h" #include <QObject> #include "contact.h" class Q_EXAMPLE_IVI_ADDRESSBOOK_EXPORT AddressBookModuleFactory : public AddressBookModule { Q_OBJECT public: AddressBookModuleFactory(QObject *parent = nullptr); Q_INVOKABLE Contact contact() const; Q_INVOKABLE Contact contact(const QString &forename, const QString &name, int phone) const; }; #endif // ADDRESSBOOKMODULEFACTORY_H_