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! *****************************************************************************/
#include "processingservicebackendinterface.h" /*! \class ProcessingServiceBackendInterface \inmodule Example.IVI.Remote \ingroup backends \inherits QIviFeatureInterface \keyword Example.IVI.Remote.ProcessingService \brief Backend interface for ProcessingService. The ProcessingServiceBackendInterface is the interface used by \l ProcessingService. The interface is discovered by a \l ProcessingService object, which connects to it and sets up the connections to it. \sa ProcessingService */ ProcessingServiceBackendInterface::ProcessingServiceBackendInterface(QObject *parent) : QIviFeatureInterface(parent) { } ProcessingServiceBackendInterface::~ProcessingServiceBackendInterface() { } /*! \fn void ProcessingServiceBackendInterface::setLastMessage(const QString &lastMessage); Setter for ProcessingService::lastMessage. Sets the property \e lastMessage to the new value passed by \a lastMessage. This method is expected to emit a \l lastMessageChanged() signal when the internal state changes due to this function call. The signal is even expected to be emitted if the given \a lastMessage is out of range and no actual change takes place. \sa lastMessageChanged() */ /*! \fn QIviPendingReply<int> ProcessingServiceBackendInterface::process(const QString &data); */ /*! \fn void ProcessingServiceBackendInterface::lastMessageChanged(const QString &lastMessage); The signal is emitted when the \e lastMessage property changed to \a lastMessage. \sa setLastMessage \sa ProcessingService::lastMessage */