learning
- https://dekonvoluted.github.io/programming/2018/09/16/qt-event-loop.html
- Signals, Slots and EventLoop
- Qt Meta objects
- there may be a
#include main.moc
in qt cpp files because of that - it’s something in the preprocessing phase: https://cmake.org/cmake/help/latest/manual/cmake-qt.7.html#automoc
- https://doc.qt.io/qt-6/metaobjects.html
- wonder why there is just a random “word” sitting here and how that even fits into cpp syntax????
- it’s a macro, that enables the QObject to be a Meta Object… see: https://doc.qt.io/qt-6/metaobjects.html
- there may be a