Qt IVI Generator Remote Objects Example

/**************************************************************************** ** Generated from 'Example.IVI.Remote.qface' ** ** Created by: The QFace generator (QtAS 5.12.8) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/
#ifndef CORE_H #define CORE_H #include <QRemoteObjectNode> class Core : public QObject { Q_OBJECT private: Core(QObject *parent=nullptr); public: virtual ~Core(); void init(); static Core* instance(); QRemoteObjectRegistryHost* host() const; private: void reportError(QRemoteObjectNode::ErrorCode code); static Core* s_instance; QRemoteObjectRegistryHost* m_host; }; #endif