ObjPgSQL  Artifact [421ad0603f]

Artifact 421ad0603fbeaf7aa64cc57db327f3ff0ba99a81f59f468c45edb06801796c57:

  • File src/PGResult.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: 201)


#include <libpq-fe.h>

#import <ObjFW/ObjFW.h>

OF_ASSUME_NONNULL_BEGIN

@class PGResultRow;

@interface PGResult: OFArray OF_GENERIC(PGResultRow *)
{
	PGresult *_result;
}
@end

OF_ASSUME_NONNULL_END