Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. void ShowRootMaps() {
  2. TObjArray *oa = gInterpreter->GetRootMapFiles();
  3. TIter i(oa);
  4. TObject *o;
  5. TNamed *n;
  6. TString s;
  7. while ((o = i.Next()) != NULL) {
  8. n = dynamic_cast<TNamed *>(o);
  9. Printf("%-40s --> %s", n->GetName(), n->GetTitle());
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement