| 12345678910111213141516171819 |
- //
- // LKS_ObjectRegistry.h
- // LookinServer
- //
- // Created by Li Kai on 2019/4/21.
- // https://lookin.work
- //
- #import <Foundation/Foundation.h>
- @interface LKS_ObjectRegistry : NSObject
- + (instancetype)sharedInstance;
- - (unsigned long)addObject:(NSObject *)object;
- - (NSObject *)objectWithOid:(unsigned long)oid;
- @end
|