Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
You can inherit your MiServicio from QObject too, afaik. Like this:
MiServicio
class MiServicio : public QObject, public QtService<QCoreApplication> { Q_OBJECT ...
Hi,
Just one detail here: when you inherit from multiple classes: you can only have one QObject base and it should the first. More information about this can be found in QObject's documentation.
Or you can use virtual inheritance :)