#import #import #import #if !MACOS_NE #include #endif #include class IosController; @interface IosControllerWrapper : NSObject { IosController *cppController; } - (instancetype)initWithCppController:(IosController *)controller; - (void)vpnStatusDidChange:(NSNotification *)notification; - (void)vpnConfigurationDidChange:(NSNotification *)notification; @end typedef void (^DocumentPickerClosedCallback)(NSString *path); #if !MACOS_NE @interface DocumentPickerDelegate : NSObject @property (nonatomic, copy) DocumentPickerClosedCallback documentPickerClosedCallback; @end #endif