luxlabs header browser preview


@class NSObject;
@protocol OS_dispatch_source;

@interface CalSignalSensor : NSObject {
    NSObject<OS_dispatch_source> *_signalSource;
}

@property (nonatomic) int signal;
@property (copy, nonatomic) id /* block */ fireBlock;

- (void)dealloc;
- (id)initWithSignal:(int)a0;
- (void)stopSensor;
- (void)startSensor;
- (id)description;
- (void).cxx_destruct;
- (void)_shutDownSource;

@end