LKS_ObjectRegistry.h 405 B

1234567891011121314151617181920212223
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LKS_ObjectRegistry.h
  4. // LookinServer
  5. //
  6. // Created by Li Kai on 2019/4/21.
  7. // https://lookin.work
  8. //
  9. #import <Foundation/Foundation.h>
  10. @interface LKS_ObjectRegistry : NSObject
  11. + (instancetype)sharedInstance;
  12. - (unsigned long)addObject:(NSObject *)object;
  13. - (NSObject *)objectWithOid:(unsigned long)oid;
  14. @end
  15. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */