Differences From Artifact [07db86ca5c]:
- File src/PGResult.h — part of check-in [31c5599df5] at 2024-08-11 09:22:44 on branch trunk — Change license to unmodified ISC (user: js, size: 1033) [annotate] [blame] [check-ins using]
To Artifact [2046b4f6dd]:
- File src/PGResult.h — part of check-in [e4c8de38e0] at 2024-08-11 17:45:27 on branch trunk — Add documentation (user: js, size: 1216) [annotate] [blame] [check-ins using]
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + + + + + + + | #import <ObjFW/ObjFW.h> OF_ASSUME_NONNULL_BEGIN @class PGResultRow; /** * @class PGResult PGResult.h ObjPgSQL/ObjPgSQL.h * * @brief A PostgreSQL result. * * This is a regular OFArray, where each entry in the array represents a result * row. */ @interface PGResult: OFArray OF_GENERIC(PGResultRow *) { PGresult *_result; } @end OF_ASSUME_NONNULL_END |