1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import "EXKernelAppRegistry.h" 4 5 @class EXErrorRecoveryManager; 6 @class EXFileSystemManager; 7 @class EXGoogleAuthManager; 8 @class EXKernelLinkingManager; 9 @class EXKernelModuleManager; 10 @class EXRemoteNotificationManager; 11 @class EXScreenOrientationManager; 12 @class EXUpdatesManager; 13 @class EXUserNotificationManager; 14 15 @interface EXKernelServiceRegistry : NSObject <EXKernelAppRegistryDelegate> 16 17 // TODO: roll these into a macro in the respective classes instead of defining explicitly here. 18 @property (nonatomic, readonly) EXErrorRecoveryManager *errorRecoveryManager; 19 @property (nonatomic, readonly) EXKernelModuleManager *kernelModuleManager; 20 @property (nonatomic, readonly) EXKernelLinkingManager *linkingManager; 21 @property (nonatomic, readonly) EXRemoteNotificationManager *remoteNotificationManager; 22 @property (nonatomic, readonly) EXScreenOrientationManager *screenOrientationManager; 23 @property (nonatomic, readonly) EXUpdatesManager *updatesManager; 24 @property (nonatomic, readonly) EXUserNotificationManager *notificationsManager; 25 26 @property (nonatomic, readonly) NSDictionary<NSString *, id> *allServices; 27 28 @end 29