FossilOrigin-Name: 8c8a4313228bba7114d582a6802a2df53a1fb357f5c0805ae58531dd4c799d8c
13 lines
213 B
Objective-C
13 lines
213 B
Objective-C
#include <libpq-fe.h>
|
|
|
|
#import <ObjFW/ObjFW.h>
|
|
|
|
@interface PGResult: OFArray
|
|
{
|
|
PGresult *_result;
|
|
}
|
|
|
|
+ PG_resultWithResult: (PGresult*)result;
|
|
- PG_initWithResult: (PGresult*)result;
|
|
- (PGresult*)PG_result;
|
|
@end
|