Possible Duplicate:
How can I add reflection to a C++ application?
Is there any way to get the classname, classmembers and classmethods of a object or klass in C++?
In Java I can use:
Object.getClass().getMethods()
Object.getClass().getName()
Object.getClass().getDeclaredMethods();
Object.getClass().getDeclaredFields();
Object.getClass().getMembers();
I know there is the metaObject-Class in QT. But i don't want use this framework. Is there something else in the boost-libary or STL?
http://doc.qt.digia.com/qt/metaobjects.html#meta-object-system
Thanks.