FossilOrigin-Name: 8c8a4313228bba7114d582a6802a2df53a1fb357f5c0805ae58531dd4c799d8c
18 lines
277 B
Objective-C
18 lines
277 B
Objective-C
#include <libpq-fe.h>
|
|
|
|
#import <ObjFW/ObjFW.h>
|
|
|
|
#import "PGResult.h"
|
|
|
|
@interface PGResultRow: OFDictionary
|
|
{
|
|
PGResult *_result;
|
|
PGresult *_res;
|
|
int _row;
|
|
}
|
|
|
|
+ rowWithResult: (PGResult*)result
|
|
row: (int)row;
|
|
- initWithResult: (PGResult*)result
|
|
row: (int)row;
|
|
@end
|