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