blob: d82e38d2c5189392b156b44bf1aebcf34798b23e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SDLFunctionID.h
//
#import <Foundation/Foundation.h>
#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"
#import "NSNumber+NumberType.h"
NS_ASSUME_NONNULL_BEGIN
@interface SDLFunctionID : NSObject
+ (instancetype)sharedInstance;
- (nullable SDLName)functionNameForId:(UInt32)functionID;
- (nullable NSNumber<SDLInt> *)functionIdForName:(SDLName)functionName;
@end
NS_ASSUME_NONNULL_END
|