I wrote a library (DLL). Java code uses my DLL with JNA. In library I creates Qtimer by "new" in QThread derived class.
But, I have the following error:
ERROR: QTimer can only be used with threads started with QThread
How should I properly use QTimer to invoke from non-Qt thread without QApplication/QCoreApplication?