Hacker News new | ask | show | jobs
by amelius 2447 days ago
That's a step in the right direction. The next thing would be to drop the compiler extensions (signal/slots macros) in favor of modern C++.
3 comments

There is sadly no reflection nore code generation yet in C++ so that cannot work without lots of ugly macros.
Verdigris is a moc replacement (not a Qt fork like CopperSpice) which generates QMetaObject through macros using constexpr.
Already done by CopperSpice.