1/13/2025 at 6:39:53 AM
Also of note:> What is CopperSpice
> CopperSpice is a C++ library derived from the Qt framework. Our motivation for developing CopperSpice was to change the core design of the libraries leveraging modern C++ functionality.
> The redesign allowed us to completely remove the Meta-Object Compiler (moc) system. Moc is a code generator and did not support many aspects of modern C++ including templates, complex data types, static type checking, and relied heavily on string comparisons. Removing moc improves run time performance, reduces the complexity of the build process, and allows more issues to be detected at compile time.
This sounds pretty great. Does anyone have experience using it?
by wk_end
1/13/2025 at 9:54:39 AM
This was also more interesting to me than the DoxyPress announcement.by cies
1/13/2025 at 4:27:26 PM
You can use Verdigris to achieve the same with Qt https://github.com/woboq/verdigrisby zxspectrum1982