_ROOT Version: 6.20/06
_Platform: Linux
_Compiler: Not Known
Using TClass I can get lists of methods, etc., about a particular type. Sometimes, people define typedef’s inside a class header. For example:
class my_class {
pubilc:
  typedef int myint
  myint status();
};
Starting from the TClass pointer to this class (which has a full dictionary generated), is there a way I can get at the list of typedefs defined?
Many thanks in advance!
- Gordon.