mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
13 lines
278 B
Objective-C
13 lines
278 B
Objective-C
#import "PSKeyValueReader.h"
|
|
#import "PSKeyValueWriter.h"
|
|
|
|
#import "lmdb.h"
|
|
|
|
@class PSLMDBTable;
|
|
|
|
@interface PSLMDBKeyValueReaderWriter : NSObject <PSKeyValueReader, PSKeyValueWriter>
|
|
|
|
- (instancetype)initWithTable:(PSLMDBTable *)table transaction:(MDB_txn *)transaction;
|
|
|
|
@end
|