HINSPClassDumpTableViewController.h 505 B

1234567891011121314151617181920212223
  1. //
  2. // RMClassDumpTableViewController.h
  3. // HeapInspectorExample
  4. //
  5. // Created by Christian Menschel on 01.09.14.
  6. // Copyright (c) 2014 tapwork. All rights reserved.
  7. //
  8. #import "HINSPTableViewController.h"
  9. typedef NS_ENUM(NSUInteger, RMClassDumpType) {
  10. RMClassDumpMethods,
  11. RMClassDumpProperties,
  12. RMClassDumpIvar,
  13. RMClassDumpClasses
  14. };
  15. @interface HINSPClassDumpTableViewController : HINSPTableViewController
  16. - (instancetype)initWithObject:(id)object type:(RMClassDumpType)type;
  17. @end