Differences From Artifact [4c4b6ee6a8]:
- File src/PGResultRow.h — part of check-in [fc8e42990e] at 2017-05-09 23:19:20 on branch trunk — Adjust to recent ObjFW changes (user: js, size: 327) [annotate] [blame] [check-ins using]
To Artifact [c389ce6aac]:
- File
src/PGResultRow.h
— part of check-in
[6307a38198]
at
2017-05-10 23:46:05
on branch trunk
— Move private methods to separate headers
Also fixes a typo and adds two missing nullability annotations. (user: js, size: 239) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | #include <libpq-fe.h> #import <ObjFW/ObjFW.h> #import "PGResult.h" OF_ASSUME_NONNULL_BEGIN | | < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <libpq-fe.h> #import <ObjFW/ObjFW.h> #import "PGResult.h" OF_ASSUME_NONNULL_BEGIN @interface PGResultRow: OFDictionary OF_GENERIC(OFString *, id) { PGResult *_result; PGresult *_res; int _row; } @end OF_ASSUME_NONNULL_END |