ObjPgSQL/src/PGResultRow+Private.h
Jonathan Schleifer 308199f21e Move private methods to separate headers
Also fixes a typo and adds two missing nullability annotations.

FossilOrigin-Name: 6307a381989719ad89067e1ae2cb5d454dd0b77a83cc6141785067365767e7f6
2017-05-10 23:46:04 +00:00

12 lines
260 B
Objective-C

#import "PGResultRow.h"
OF_ASSUME_NONNULL_BEGIN
@interface PGResultRow ()
+ (instancetype)PG_rowWithResult: (PGResult *)result
row: (int)row;
- PG_initWithResult: (PGResult *)result
row: (int)row OF_METHOD_FAMILY(init);
@end
OF_ASSUME_NONNULL_END