Add support for retrieving columns

FossilOrigin-Name: 727a6838a567ab678c28cb0dfc2b95aaa4fa9b5af7b29e9f9833ffd81cea8d9d
This commit is contained in:
Jonathan Schleifer 2020-10-01 23:43:39 +00:00
parent f7aa1209f7
commit 5967ebf3b7
3 changed files with 82 additions and 2 deletions

View file

@ -41,7 +41,10 @@ OF_ASSUME_NONNULL_BEGIN
- (void)bindWithDictionary:
(OFDictionary OF_GENERIC(OFString *, id) *)dictionary;
- (void)clearBindings;
- (void)step;
- (id)objectForColumn: (size_t)column;
- (size_t)columnCount;
- (OFString *)nameForColumn: (size_t)column;
- (bool)step;
- (void)reset;
@end