On terça-feira, 9 de fevereiro de 2016 09:39:04 PST Nye wrote: > Hello, > I wish to implement my own event dispatcher, so I derived from > QAbstractEventDispatcher. As usual with PIMPL I'd derive my private object > from QAbstractEventDispatcherPrivate and pass it to the public class' > constructor. Unfortunately, even with QT += core-private I don't have the > "qabstracteventdispatcher_p.h" header available. Is this file's absence a > miss of the build system, or am I doing something wrongly?
How did you install Qt? Your installation is missing some files. Also, note that you do not need the private API to implement your own dispatcher. You should not use QAbstractEventDispatcherPrivate. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center _______________________________________________ Interest mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/interest
