> list

Partially Generated Classes in C++

An interesting problem which I've seen come up decently often in C++ code generators is how to deal with what I'm calling "partially generated classes". We want to generate methods and members for a class which call other methods on that class added by the implementation.

Potential Solutions

I'm not …