LKS_ObjectRegistry.h 324 B

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