FossilOrigin-Name: cf2fe185976eb9af8c8437fb68da475cdf47944bef02a89114dc3ea285b97552
18 lines
274 B
Objective-C
18 lines
274 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
|