Reflection in standard C++

I've been playing with C++ a lot lately, trying to see what ways I can manipulate templates and macros.  I'm aware that it isn't a wholly original concept, but today I decided it would be a good idea to try implementing a nice reflection interface for C++.  Right now it only supports members and parent/child relationships.  The next step is to implement method metadata, and eventually I'd like the system to be extensible such that you can attach arbitrary metadata to classes and their members. Continue reading "Reflection in standard C++"