luxlabs header browser preview


@class NSMapTable;

@interface HDIdentifierTable : NSObject {
    NSMapTable *_map;
    unsigned long long _nextIdentifier;
}

- (void)removeAllObjects;
- (unsigned long long)count;
- (id)allObjects;
- (void).cxx_destruct;
- (unsigned long long)addObject:(id)a0;
- (id)objectWithIdentifier:(unsigned long long)a0;
- (void)removeObjectWithIdentifier:(unsigned long long)a0;

@end