OOPerformanceEventWatchStartEnd.h
1 #import <Foundation/Foundation.h>
2 #import "OOPerformanceEventWatchProtocol.h"
3 #import "OOPerformanceEventMatcherProtocol.h"
4 
9 @interface OOPerformanceEventWatchStartEnd : NSObject <OOPerformanceEventWatchProtocol>
10 @property (nonatomic, readonly) id<OOPerformanceEventMatcherProtocol> start;
11 @property (nonatomic, readonly) id<OOPerformanceEventMatcherProtocol> end;
12 -(instancetype) init __attribute__((unavailable("init not available")));
13 -(instancetype) initWithStart:(id<OOPerformanceEventMatcherProtocol>)start end:(id<OOPerformanceEventMatcherProtocol>)end;
14 @end
id< OOPerformanceEventMatcherProtocol > end
Definition: OOPerformanceEventWatchStartEnd.h:11
(unavailable("init not available" __attribute__()
Help keep track of the window between a start and end event.
Definition: OOPerformanceEventWatchStartEnd.h:9
id< OOPerformanceEventMatcherProtocol > start
Definition: OOPerformanceEventWatchStartEnd.h:10