Artifact 4c4b6ee6a854b22228a78ab8040850bfbc70246b6df4726cd295d092a184d7c5:
- 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]
#include <libpq-fe.h> #import <ObjFW/ObjFW.h> #import "PGResult.h" OF_ASSUME_NONNULL_BEGIN @interface PGResultRow: OFDictionary { PGResult *_result; PGresult *_res; int _row; } + rowWithResult: (PGResult *)result row: (int)row; - initWithResult: (PGResult *)result row: (int)row; @end OF_ASSUME_NONNULL_END