4
votes
C++ templates and inheritance
I hate to tell you but if you're using a list of instances to Control instead of pointers to Control, your buttons will be garbage anyway (Google "object slicing"). If they're lists of pointers, t …
0
votes
How best to switch from template mess to clean classes architecture (C++)?
I've often come across legacy templates that were huge and required a lot of time and memory to instantiate, but didn't need to be. In those cases, the easiest way to cut out the fat was to take a …
2
votes
How can I add reflection to a C++ application?
I did something like what you're after once, and while it's possible to get some level of reflection and access to higher-level features, the maintenance headache might not be worth it. My system …
10
votes
How do you debug heavily templated code in c++?
For the STL at least there are tools available that will output more human-friendly error messages. See http://www.bdsoft.com/tools …
