luxlabs header browser preview


@class NSObject;
@protocol OS_os_log, OS_dispatch_queue;

@interface CBModule : NSObject {
    id /* block */ _notificationBlock;
    NSObject<OS_os_log> *_logHandle;
    NSObject<OS_dispatch_queue> *_queue;
}

- (void)sendNotificationForKey:(id)a0 withValue:(id)a1;
- (id)initWithQueue:(id)a0;
- (void)dealloc;
- (void)unregisterNotificationBlock;
- (void)registerNotificationBlock:(id /* block */)a0;

@end