Access a Class's Member Information

Hey guys,

I was wondering if there is any function or way to get a list of members, in string or char format, that belong to a certain class type and later on be able to use these strings/chars to call that particular function or set that particular variable. The reason I want to do this is I want my program to be able to access certain members so I don't have to hard-code each one for every class. Is this sort of thing possible?

Thanks.
No, not without parsing the source file containing the declaration. Introspection, which is very useful, is not currently supported by the language.

Topic archived. No new replies allowed.