Get a list of member in a class deriving from TObject

Hi there,

just a very basic question.

How can I get a list of the member names inside the TObject class?

I.e. the first column when using method ->Dump()

thanks!

Try:

yourobject->IsA()->GetListOfDataMembers(); yourobject->IsA()->GetListOfMethods();

Cheers, Bertrand.