Files
keyboard/Pods/LookinServer/Src/Main/Server/Others/LKS_ObjectRegistry.h
2025-10-28 10:18:10 +08:00

24 lines
405 B
Objective-C

#ifdef SHOULD_COMPILE_LOOKIN_SERVER
//
// 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
#endif /* SHOULD_COMPILE_LOOKIN_SERVER */