QObject classes does not support templates
During compilation i get this:
Error: Template classes not supported by Q_OBJECT
QObject classes does not support templates
During compilation i get this:
Error: Template classes not supported by Q_OBJECT
All Rights Reserved ...
They do, only that you can't use Q_OBJECT macro with a template class. You need to subclass twice -- first introduce Q_OBJECT, define all the signals and slots you want and then subclass again and introduce the template.
Bookmarks