ObjPgSQL  Artifact [c389ce6aac]

Artifact c389ce6aac7d026208484192e4901bbd7fdc623c2079cec3e7caa36a315cf026:

  • 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)


#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