mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 19:38:55 -04:00
19 lines
418 B
Objective-C
19 lines
418 B
Objective-C
//
|
|
// FLEXASLLogController.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner on 3/14/19.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXLogController.h"
|
|
|
|
@interface FLEXASLLogController : NSObject <FLEXLogController>
|
|
|
|
/// Guaranteed to call back on the main thread.
|
|
+ (instancetype)withUpdateHandler:(void(^)(NSArray<FLEXSystemLogMessage *> *newMessages))newMessagesHandler;
|
|
|
|
- (BOOL)startMonitoring;
|
|
|
|
@end
|