XCUIHitPointResult.h 541 B

1234567891011121314151617181920
  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. #import <Foundation/Foundation.h>
  7. #import <CoreGraphics/CoreGraphics.h>
  8. @interface XCUIHitPointResult : NSObject
  9. {
  10. BOOL _hittable;
  11. CGPoint _hitPoint;
  12. }
  13. @property(readonly, getter=isHittable) BOOL hittable; // @synthesize hittable=_hittable;
  14. @property(readonly) struct CGPoint hitPoint; // @synthesize hitPoint=_hitPoint;
  15. - (id)initWithHitPoint:(struct CGPoint)arg1 hittable:(BOOL)arg2;
  16. @end