XCActivityRecord.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // Generated by class-dump 3.5 (64 bit).
  3. //
  4. // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
  5. //
  6. @class NSArray, NSData, NSDate, NSString, NSUUID, XCSynthesizedEventRecord;
  7. @interface XCActivityRecord : NSObject <NSSecureCoding>
  8. {
  9. NSString *_title;
  10. NSUUID *_uuid;
  11. NSDate *_start;
  12. NSDate *_finish;
  13. BOOL _hasSubactivities;
  14. NSData *_screenImageData;
  15. id/*XCElementSnapshot*/ _snapshot;
  16. NSArray *_elementsOfInterest;
  17. XCSynthesizedEventRecord *_synthesizedEvent;
  18. NSData *_diagnosticReportData;
  19. NSData *_memoryGraphData;
  20. }
  21. @property(copy) NSData *memoryGraphData; // @synthesize memoryGraphData=_memoryGraphData;
  22. @property(copy) NSData *diagnosticReportData; // @synthesize diagnosticReportData=_diagnosticReportData;
  23. @property(retain) XCSynthesizedEventRecord *synthesizedEvent; // @synthesize synthesizedEvent=_synthesizedEvent;
  24. @property(copy) NSArray *elementsOfInterest; // @synthesize elementsOfInterest=_elementsOfInterest;
  25. @property(retain) id/*XCElementSnapshot*/ *snapshot; // @synthesize snapshot=_snapshot;
  26. @property(copy) NSData *screenImageData; // @synthesize screenImageData=_screenImageData;
  27. @property BOOL hasSubactivities; // @synthesize hasSubactivities=_hasSubactivities;
  28. @property(copy) NSDate *start; // @synthesize start=_start;
  29. @property(copy) NSDate *finish; // @synthesize finish=_finish;
  30. @property(copy) NSUUID *uuid; // @synthesize uuid=_uuid;
  31. @property(copy) NSString *title; // @synthesize title=_title;
  32. @property(readonly) double duration;
  33. - (id)init;
  34. @end